diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 11:44:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 11:44:08 -0500 |
commit | 6cc998f28bb1cf119ca96bac385c7361bc1f7021 (patch) | |
tree | d5fb8f0da5c79fa14afc814ea85cf1c9134eb714 /js/net_test.ts | |
parent | bee55fcd20b4919f2d6b4817ce33d1a09e6bcadc (diff) |
Remove support for extensionless import (#1396)
Diffstat (limited to 'js/net_test.ts')
-rw-r--r-- | js/net_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/net_test.ts b/js/net_test.ts index 999cea9b6..bf48b3448 100644 --- a/js/net_test.ts +++ b/js/net_test.ts @@ -1,7 +1,7 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. import * as deno from "deno"; import { testPerm, assert, assertEqual } from "./test_util.ts"; -import { deferred } from "./util.ts"; +import { deferred } from "deno"; testPerm({ net: true }, function netListenClose() { const listener = deno.listen("tcp", "127.0.0.1:4500"); |