summaryrefslogtreecommitdiff
path: root/cli/tests/045_proxy_client.ts
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2019-10-22 22:52:41 +0900
committerRy Dahl <ry@tinyclouds.org>2019-10-22 09:52:41 -0400
commitec44b5b6af1b70bb4041c909989b5f94138ecaf5 (patch)
tree3d488d3bab137aaee41f6ff476b0ce159d7f0c1f /cli/tests/045_proxy_client.ts
parentea8231af3396a054eb4faf73064d8333ab1006e0 (diff)
test: improve http_proxy test (#3185)
Diffstat (limited to 'cli/tests/045_proxy_client.ts')
-rw-r--r--cli/tests/045_proxy_client.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/045_proxy_client.ts b/cli/tests/045_proxy_client.ts
index 4fb3db83b..3d7003750 100644
--- a/cli/tests/045_proxy_client.ts
+++ b/cli/tests/045_proxy_client.ts
@@ -1,6 +1,6 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
async function main(): Promise<void> {
- const res = await fetch("http://deno.land/welcome.ts");
+ const res = await fetch("http://localhost:4545/std/examples/colors.ts");
console.log(`Response http: ${await res.text()}`);
}