summaryrefslogtreecommitdiff
path: root/cli/tests/workers/test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-07-28 13:12:45 +0200
committerGitHub <noreply@github.com>2021-07-28 13:12:45 +0200
commitc198535caf7209460b938fc7bbd48c80742c950c (patch)
treede1ee7d66943d6c0ab286843e4275a81c910df3e /cli/tests/workers/test.ts
parent7f3a34eeb89e7c930b8189f95c5f8715185da587 (diff)
fix: flaky worker test (#11540)
Diffstat (limited to 'cli/tests/workers/test.ts')
-rw-r--r--cli/tests/workers/test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/workers/test.ts b/cli/tests/workers/test.ts
index d35dbec82..d62b644a4 100644
--- a/cli/tests/workers/test.ts
+++ b/cli/tests/workers/test.ts
@@ -729,7 +729,7 @@ Deno.test({
await result;
assert(worker);
- const response = await fetch("http://localhost:4500");
+ const response = await fetch("http://localhost:4506");
assert(await response.arrayBuffer());
worker.terminate();
},