diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-08-14 02:03:29 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-13 20:03:29 -0400 |
commit | 63bbe2a2e041388ec167d67c73f497ea7b8590c6 (patch) | |
tree | 70bf7ba57ace4e03d8c46b095afa23edcf17bf74 /http/racing_server_test.ts | |
parent | 50fdccb17549eae05be2a68163f6e739cdf82b53 (diff) |
ci: bump to v0.15.0 (denoland/deno_std#556)
Original: https://github.com/denoland/deno_std/commit/f3ddb4f26b81b4fbed86f4b54db7b3e7e3b7fe4e
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 a34f915d5..6d1ed0277 100644 --- a/http/racing_server_test.ts +++ b/http/racing_server_test.ts @@ -8,7 +8,7 @@ import { TextProtoReader } from "../textproto/mod.ts"; let server: Deno.Process; async function startServer(): Promise<void> { server = run({ - args: [Deno.execPath, "run", "-A", "http/racing_server.ts"], + args: [Deno.execPath(), "run", "-A", "http/racing_server.ts"], stdout: "piped" }); // Once racing server is ready it will write to its stdout. |