diff options
Diffstat (limited to 'tests/integration/npm_tests.rs')
-rw-r--r-- | tests/integration/npm_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/npm_tests.rs b/tests/integration/npm_tests.rs index ab00c7b56..63547cfce 100644 --- a/tests/integration/npm_tests.rs +++ b/tests/integration/npm_tests.rs @@ -3088,7 +3088,7 @@ async fn test_private_npm_registry() { let client = reqwest::Client::new(); - let url = Url::parse("http://127.0.0.1:4261/@denotest2/basic").unwrap(); + let url = Url::parse("http://127.0.0.1:4261/@denotest/basic").unwrap(); let req = reqwest::Request::new(reqwest::Method::GET, url.clone()); let resp = client.execute(req).await.unwrap(); |