diff options
author | Luka Hartwig <mail@lukahartwig.de> | 2020-02-02 22:55:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 16:55:22 -0500 |
commit | f168597b7ab81afda3bf4749a81c360d364e7cf1 (patch) | |
tree | 4082e9eebf03cc7b3b653822c52a54a62e308d15 /cli/js/body_test.ts | |
parent | e8df66c12cbb3e51f8776aa91e6db41bbfdcae5e (diff) |
Remove //tests symlink (#3849)
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(); |