From ddcad56ee9bc762171fd88585fd7ab3e3da19e1e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 4 Oct 2019 14:49:32 -0400 Subject: Move deno_std to a more convenient location. (#3057) js/deps/https/deno.land/std -> js/std --- cli/tests/045_proxy_test.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'cli/tests/045_proxy_test.ts') diff --git a/cli/tests/045_proxy_test.ts b/cli/tests/045_proxy_test.ts index 51a17f7a5..f1226f4c4 100644 --- a/cli/tests/045_proxy_test.ts +++ b/cli/tests/045_proxy_test.ts @@ -1,9 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { - serve, - ServerRequest -} from "../../js/deps/https/deno.land/std/http/server.ts"; -import { assertEquals } from "../../js/deps/https/deno.land/std/testing/asserts.ts"; +import { serve, ServerRequest } from "../../std/http/server.ts"; +import { assertEquals } from "../../std/testing/asserts.ts"; const addr = Deno.args[1] || "127.0.0.1:4555"; -- cgit v1.2.3