summaryrefslogtreecommitdiff
path: root/tests/testdata/echo_server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/echo_server.ts')
-rw-r--r--tests/testdata/echo_server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testdata/echo_server.ts b/tests/testdata/echo_server.ts
index cbf081c35..9352e0634 100644
--- a/tests/testdata/echo_server.ts
+++ b/tests/testdata/echo_server.ts
@@ -1,4 +1,4 @@
-import { copy } from "../../tests/util/std/streams/copy.ts";
+import { copy } from "../../tests/util/std/io/copy.ts";
const addr = Deno.args[0] || "0.0.0.0:4544";
const [hostname, port] = addr.split(":");
const listener = Deno.listen({ hostname, port: Number(port) });