diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-03 14:55:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-03 14:55:22 -0500 |
commit | 4f62a56f9071b0541b6be9b8e9c40fdcc2a3da22 (patch) | |
tree | c19cfeea353736e37b1d844dafbc1f1c256755bd /tests/fetch_deps.ts | |
parent | a8d326b4311757b2b69bc251d460f4242d19a29f (diff) |
Move testing module to deno_std (#1451)
Upgrades deno_std submodule.
Diffstat (limited to 'tests/fetch_deps.ts')
-rw-r--r-- | tests/fetch_deps.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fetch_deps.ts b/tests/fetch_deps.ts index 76df15597..41ed60aca 100644 --- a/tests/fetch_deps.ts +++ b/tests/fetch_deps.ts @@ -1,5 +1,5 @@ // Run ./tools/http_server.py too in order for this test to run. -import { assert } from "../js/testing/testing.ts"; +import { assert } from "../js/deps/https/deno.land/x/std/testing/mod.ts"; // TODO Top level await https://github.com/denoland/deno/issues/471 async function main() { |