diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-26 21:06:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-26 21:06:59 -0400 |
commit | af18093498c3fca103bd47305e447ddeda40d9a2 (patch) | |
tree | 7ea1a53788aea8eaea3342661e569976f7cf8892 /http/racing_server_test.ts | |
parent | aa21e7bc81909630bec6e3e527e89f3673b75a3c (diff) |
Bump v0.19.0 (denoland/deno_std#613)
Original: https://github.com/denoland/deno_std/commit/5d0dd5878e82ab7577356096469a7e280efe8442
Diffstat (limited to 'http/racing_server_test.ts')
-rw-r--r-- | http/racing_server_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http/racing_server_test.ts b/http/racing_server_test.ts index 6d1ed0277..a6534861e 100644 --- a/http/racing_server_test.ts +++ b/http/racing_server_test.ts @@ -50,7 +50,7 @@ World 4 test(async function serverPipelineRace(): Promise<void> { await startServer(); - const conn = await dial("tcp", "127.0.0.1:4501"); + const conn = await dial({ port: 4501 }); const r = new TextProtoReader(new BufReader(conn)); await conn.write(new TextEncoder().encode(input)); const outLines = output.split("\n"); |