summaryrefslogtreecommitdiff
path: root/cli/tests/integration/mod.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-12-23 00:25:06 +1100
committerGitHub <noreply@github.com>2021-12-22 14:25:06 +0100
commit8547a37132752cf6a979237c5a52a7bf16a4e833 (patch)
tree10e14c5aa8675bf75c8aa66bf7bf1f7de6948fee /cli/tests/integration/mod.rs
parentac06797fa8607f2e15477fe1b038215740a5747d (diff)
chore: update deno_graph and deno_doc (#13173)
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r--cli/tests/integration/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs
index b04f552e8..8dd50b2f3 100644
--- a/cli/tests/integration/mod.rs
+++ b/cli/tests/integration/mod.rs
@@ -1100,9 +1100,8 @@ fn basic_auth_tokens() {
let stderr_str = std::str::from_utf8(&output.stderr).unwrap().trim();
eprintln!("{}", stderr_str);
- assert!(stderr_str.contains(
- "Import 'http://127.0.0.1:4554/001_hello.js' failed, not found."
- ));
+ assert!(stderr_str
+ .contains("Module not found \"http://127.0.0.1:4554/001_hello.js\"."));
let output = util::deno_cmd()
.current_dir(util::root_path())