diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-24 22:29:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-24 22:29:36 +0100 |
commit | 66e99d349b31f5cd30b868d80ebdab6ba749fd96 (patch) | |
tree | 2fdf22255cb15a750574d37b33de2a4637d62a5e /std/http/file_server_test.ts | |
parent | feff6361b1247c82bb86aedfea349b04899b9610 (diff) |
tests: enable wpt for url (#9046)
Diffstat (limited to 'std/http/file_server_test.ts')
-rw-r--r-- | std/http/file_server_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/file_server_test.ts b/std/http/file_server_test.ts index 638121b45..94d97cc37 100644 --- a/std/http/file_server_test.ts +++ b/std/http/file_server_test.ts @@ -335,7 +335,7 @@ Deno.test("contentType", async () => { Deno.test("file_server running as library", async function (): Promise<void> { await startFileServerAsLibrary(); try { - const res = await fetch("http://localhost:8000"); + const res = await fetch("http://localhost:4504"); assertEquals(res.status, 200); const _ = await res.text(); } finally { |