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 /website/app_test.ts | |
parent | eecb4fea26aa3d1cddef1bb44ed3500d2b4dd477 (diff) |
Move deno_std to a more convenient location. (#3057)
js/deps/https/deno.land/std -> js/std
Diffstat (limited to 'website/app_test.ts')
-rw-r--r-- | website/app_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/app_test.ts b/website/app_test.ts index cae3a989b..12ac92dd6 100644 --- a/website/app_test.ts +++ b/website/app_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test, assertEquals } from "../js/test_util.ts"; -import { runIfMain } from "../js/deps/https/deno.land/std/testing/mod.ts"; +import { runIfMain } from "../std/testing/mod.ts"; import { BenchmarkRun, createBinarySizeColumns, |