summaryrefslogtreecommitdiff
path: root/tests/echo_server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/echo_server.ts')
-rw-r--r--tests/echo_server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/echo_server.ts b/tests/echo_server.ts
index 7761c1ad7..15c3112ce 100644
--- a/tests/echo_server.ts
+++ b/tests/echo_server.ts
@@ -1,4 +1,4 @@
-import { args, listen, copy } from "deno";
+const { args, listen, copy } = Deno;
const addr = args[1] || "127.0.0.1:4544";
const listener = listen("tcp", addr);
console.log("listening on", addr);