diff options
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 428e339a5..dc16a49e1 100644 --- a/http/racing_server_test.ts +++ b/http/racing_server_test.ts @@ -11,7 +11,7 @@ async function startServer(): Promise<void> { args: ["deno", "run", "-A", "http/racing_server.ts"], stdout: "piped" }); - // Once fileServer is ready it will write to its stdout. + // Once racing server is ready it will write to its stdout. const r = new TextProtoReader(new BufReader(server.stdout!)); const s = await r.readLine(); assert(s !== Deno.EOF && s.includes("Racing server listening...")); |