Skip to content

Commit 27b3b65

Browse files
committed
Remove unnecessary test assertions
1 parent c4b0f60 commit 27b3b65

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/start-proxy/reachability.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ test("checkConnections - excludes failed status codes", async (t) => {
6565
const reachable = await checkConnections(logger, proxyInfo, backend);
6666
t.is(reachable.size, 1);
6767
t.true(reachable.has(mavenRegistry));
68-
t.false(reachable.has(nugetFeed));
6968
});
7069
checkExpectedLogMessages(t, messages, [
7170
`Testing connection to ${mavenRegistry.url}`,
@@ -86,7 +85,6 @@ test("checkConnections - handles other exceptions", async (t) => {
8685
const reachable = await checkConnections(logger, proxyInfo, backend);
8786
t.is(reachable.size, 1);
8887
t.true(reachable.has(mavenRegistry));
89-
t.false(reachable.has(nugetFeed));
9088
});
9189
checkExpectedLogMessages(t, messages, [
9290
`Testing connection to ${mavenRegistry.url}`,

0 commit comments

Comments
 (0)