summaryrefslogtreecommitdiff
path: root/std/http/racing_server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/http/racing_server.ts')
-rw-r--r--std/http/racing_server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/racing_server.ts b/std/http/racing_server.ts
index 0b0e5a8a5..67db029e0 100644
--- a/std/http/racing_server.ts
+++ b/std/http/racing_server.ts
@@ -1,6 +1,6 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { serve, ServerRequest } from "./server.ts";
-import { delay } from "../util/async.ts";
+import { delay } from "../async/delay.ts";
const addr = Deno.args[1] || "127.0.0.1:4501";
const server = serve(addr);