diff options
Diffstat (limited to 'cli/tests/testdata/echo_server.ts')
-rw-r--r-- | cli/tests/testdata/echo_server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/echo_server.ts b/cli/tests/testdata/echo_server.ts index b23867cdd..658b07374 100644 --- a/cli/tests/testdata/echo_server.ts +++ b/cli/tests/testdata/echo_server.ts @@ -1,4 +1,4 @@ -import { copy } from "../../../test_util/std/io/util.ts"; +import { copy } from "../../../test_util/std/streams/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) }); |