summaryrefslogtreecommitdiff
path: root/tests/integration/cache_tests.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-05-07 13:21:56 -0400
committerGitHub <noreply@github.com>2024-05-07 17:21:56 +0000
commit998036b3998301dc53b0dc4700b91d0a9c630702 (patch)
tree085a2c13f45434ca169c4ab2a0574c675e46f0d0 /tests/integration/cache_tests.rs
parentf3cc760f2fd40145007ced2a37a3a0b2d1b2d9f3 (diff)
chore: fix flaky net_listen_allow_localhost_4555 (#23726)
Moves the test npm registry server port from `4558` to `426x`
Diffstat (limited to 'tests/integration/cache_tests.rs')
-rw-r--r--tests/integration/cache_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/cache_tests.rs b/tests/integration/cache_tests.rs
index 120b06474..809d10791 100644
--- a/tests/integration/cache_tests.rs
+++ b/tests/integration/cache_tests.rs
@@ -39,8 +39,8 @@ fn cache_matching_package_json_dep_should_not_install_all() {
.args("cache npm:@types/node@18.8.2")
.run();
output.assert_matches_text(concat!(
- "Download http://localhost:4558/@types/node\n",
- "Download http://localhost:4558/@types/node/node-18.8.2.tgz\n",
+ "Download http://localhost:4260/@types/node\n",
+ "Download http://localhost:4260/@types/node/node-18.8.2.tgz\n",
"Initialize @types/node@18.8.2\n",
));
}