summaryrefslogtreecommitdiff
path: root/std/http/file_server_test.ts
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-01-25 16:02:03 +0100
committerGitHub <noreply@github.com>2021-01-25 16:02:03 +0100
commite0eb111e3e2f76d16682559780baa3d756ed0df7 (patch)
tree0267cf6816e8277424aa2e569e494f5fea08da1d /std/http/file_server_test.ts
parentcf688cb40850fa3a7c48105a69ed4d4eb62425b8 (diff)
Revert "tests: enable wpt for url (#9046)" (#9264)
This reverts commit 66e99d349b31f5cd30b868d80ebdab6ba749fd96.
Diffstat (limited to 'std/http/file_server_test.ts')
-rw-r--r--std/http/file_server_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/file_server_test.ts b/std/http/file_server_test.ts
index 94d97cc37..638121b45 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:4504");
+ const res = await fetch("http://localhost:8000");
assertEquals(res.status, 200);
const _ = await res.text();
} finally {