diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-10-04 14:49:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 14:49:32 -0400 |
commit | ddcad56ee9bc762171fd88585fd7ab3e3da19e1e (patch) | |
tree | d0c308fc91514a3327266a57a252c4e46122ac6b /cli/tests/034_onload | |
parent | eecb4fea26aa3d1cddef1bb44ed3500d2b4dd477 (diff) |
Move deno_std to a more convenient location. (#3057)
js/deps/https/deno.land/std -> js/std
Diffstat (limited to 'cli/tests/034_onload')
-rw-r--r-- | cli/tests/034_onload/imported.ts | 2 | ||||
-rw-r--r-- | cli/tests/034_onload/main.ts | 2 | ||||
-rw-r--r-- | cli/tests/034_onload/nest_imported.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/034_onload/imported.ts b/cli/tests/034_onload/imported.ts index d71f9d654..f9a7009b8 100644 --- a/cli/tests/034_onload/imported.ts +++ b/cli/tests/034_onload/imported.ts @@ -1,4 +1,4 @@ -import { assert } from "../../../js/deps/https/deno.land/std/testing/asserts.ts"; +import { assert } from "../../../std/testing/asserts.ts"; import "./nest_imported.ts"; const handler = (e: Event): void => { diff --git a/cli/tests/034_onload/main.ts b/cli/tests/034_onload/main.ts index c3c6bdcc9..db6ca669a 100644 --- a/cli/tests/034_onload/main.ts +++ b/cli/tests/034_onload/main.ts @@ -1,4 +1,4 @@ -import { assert } from "../../../js/deps/https/deno.land/std/testing/asserts.ts"; +import { assert } from "../../../std/testing/asserts.ts"; import "./imported.ts"; const eventHandler = (e: Event): void => { diff --git a/cli/tests/034_onload/nest_imported.ts b/cli/tests/034_onload/nest_imported.ts index 3c4b1d96a..6b4a40749 100644 --- a/cli/tests/034_onload/nest_imported.ts +++ b/cli/tests/034_onload/nest_imported.ts @@ -1,4 +1,4 @@ -import { assert } from "../../../js/deps/https/deno.land/std/testing/asserts.ts"; +import { assert } from "../../../std/testing/asserts.ts"; const handler = (e: Event): void => { assert(!e.cancelable); |