diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-07-28 13:12:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 13:12:45 +0200 |
commit | c198535caf7209460b938fc7bbd48c80742c950c (patch) | |
tree | de1ee7d66943d6c0ab286843e4275a81c910df3e /cli/tests/workers/http_worker.js | |
parent | 7f3a34eeb89e7c930b8189f95c5f8715185da587 (diff) |
fix: flaky worker test (#11540)
Diffstat (limited to 'cli/tests/workers/http_worker.js')
-rw-r--r-- | cli/tests/workers/http_worker.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/workers/http_worker.js b/cli/tests/workers/http_worker.js index 6a3b49b56..34603ed56 100644 --- a/cli/tests/workers/http_worker.js +++ b/cli/tests/workers/http_worker.js @@ -1,5 +1,5 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -const listener = Deno.listen({ hostname: "127.0.0.1", port: 4500 }); +const listener = Deno.listen({ hostname: "127.0.0.1", port: 4506 }); postMessage("ready"); for await (const conn of listener) { (async () => { |