fix: flaky worker test (#11540)

This commit is contained in:
Bartek Iwańczuk 2021-07-28 13:12:45 +02:00 committed by GitHub
parent 7f3a34eeb8
commit c198535caf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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();
},