mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 12:58:54 -05:00
Use https instead of http.
This commit is contained in:
parent
e37b949e2c
commit
2d8d8247da
3 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue