diff options
Diffstat (limited to 'cli/js/body_test.ts')
-rw-r--r-- | cli/js/body_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/body_test.ts b/cli/js/body_test.ts index bb4d0a451..2ac4d1314 100644 --- a/cli/js/body_test.ts +++ b/cli/js/body_test.ts @@ -34,7 +34,7 @@ test(async function arrayBufferFromByteArrays(): Promise<void> { //FormData testPerm({ net: true }, async function bodyMultipartFormData(): Promise<void> { const response = await fetch( - "http://localhost:4545/tests/subdir/multipart_form_data.txt" + "http://localhost:4545/cli/tests/subdir/multipart_form_data.txt" ); const text = await response.text(); @@ -51,7 +51,7 @@ testPerm({ net: true }, async function bodyMultipartFormData(): Promise<void> { testPerm({ net: true }, async function bodyURLEncodedFormData(): Promise<void> { const response = await fetch( - "http://localhost:4545/tests/subdir/form_urlencoded.txt" + "http://localhost:4545/cli/tests/subdir/form_urlencoded.txt" ); const text = await response.text(); |