summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/bufio_test.ts2
-rw-r--r--net/extension_map.json2
-rw-r--r--net/file_server_test.ts2
-rw-r--r--net/http_test.ts2
-rw-r--r--net/textproto_test.ts2
5 files changed, 5 insertions, 5 deletions
diff --git a/net/bufio_test.ts b/net/bufio_test.ts
index 96490a6c9..411f173f4 100644
--- a/net/bufio_test.ts
+++ b/net/bufio_test.ts
@@ -8,7 +8,7 @@ import {
test,
assert,
assertEqual
-} from "https://deno.land/x/testing/testing.ts";
+} from "../testing/mod.ts";
import { BufReader, BufState, BufWriter } from "./bufio.ts";
import * as iotest from "./iotest.ts";
import { charCode, copyBytes, stringsReader } from "./util.ts";
diff --git a/net/extension_map.json b/net/extension_map.json
index 241e8677d..b02517d6b 100644
--- a/net/extension_map.json
+++ b/net/extension_map.json
@@ -82,4 +82,4 @@
".yml": "text/yaml",
".yaml": "text/yaml",
".zip": "application/zip"
-} \ No newline at end of file
+}
diff --git a/net/file_server_test.ts b/net/file_server_test.ts
index 40bec1c4b..36fe8bdc3 100644
--- a/net/file_server_test.ts
+++ b/net/file_server_test.ts
@@ -4,7 +4,7 @@ import {
test,
assert,
assertEqual
-} from "https://deno.land/x/testing/testing.ts";
+} from "../testing/mod.ts";
// Promise to completeResolve when all tests completes
let completeResolve;
diff --git a/net/http_test.ts b/net/http_test.ts
index 93a8049e6..46ea60185 100644
--- a/net/http_test.ts
+++ b/net/http_test.ts
@@ -10,7 +10,7 @@ import {
test,
assert,
assertEqual
-} from "https://deno.land/x/testing/testing.ts";
+} from "../testing/mod.ts";
import {
listenAndServe,
ServerRequest,
diff --git a/net/textproto_test.ts b/net/textproto_test.ts
index 3af21247a..9fe5e8dd3 100644
--- a/net/textproto_test.ts
+++ b/net/textproto_test.ts
@@ -10,7 +10,7 @@ import {
test,
assert,
assertEqual
-} from "https://deno.land/x/testing/testing.ts";
+} from "../testing/mod.ts";
function reader(s: string): TextProtoReader {
return new TextProtoReader(new BufReader(stringsReader(s)));