From 5f74f7eebe8fb657624374d8a8510fe1caa9ffa0 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 7 Nov 2018 23:22:33 -0500 Subject: [PATCH] Use https instead of http. Original: https://github.com/denoland/deno_std/commit/2d8d8247da4f71fe7e796fc1d3da1f797a2c4195 --- buffer_test.ts | 2 +- bufio_test.ts | 2 +- http_test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/buffer_test.ts b/buffer_test.ts index 8365b29bd4..9a71e80a33 100644 --- a/buffer_test.ts +++ b/buffer_test.ts @@ -5,7 +5,7 @@ import { test, assert, assertEqual -} from "http://deno.land/x/testing/testing.ts"; +} from "https://deno.land/x/testing/testing.ts"; import { Buffer } from "./buffer.ts"; // N controls how many iterations of certain checks are performed. diff --git a/bufio_test.ts b/bufio_test.ts index 9a3361d6f2..31a8363a2b 100644 --- a/bufio_test.ts +++ b/bufio_test.ts @@ -4,7 +4,7 @@ // license that can be found in the LICENSE file. import * as deno from "deno"; -import { test, assertEqual } from "http://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; import { BufReader, BufState } from "./bufio.ts"; import { Buffer } from "./buffer.ts"; import * as iotest from "./iotest.ts"; diff --git a/http_test.ts b/http_test.ts index 6fbac9a4aa..4a8867aba0 100644 --- a/http_test.ts +++ b/http_test.ts @@ -1,5 +1,5 @@ //import { listen } from "./server.ts"; -import { test } from "http://deno.land/x/testing/testing.ts"; +import { test } from "https://deno.land/x/testing/testing.ts"; test(function basic() { console.log("ok");