Remove unnecessary test assertions

This commit is contained in:
Michael B. Gale
2026-02-11 16:47:57 +00:00
parent c4b0f60beb
commit 27b3b6586d
-2
View File
@@ -65,7 +65,6 @@ test("checkConnections - excludes failed status codes", async (t) => {
const reachable = await checkConnections(logger, proxyInfo, backend);
t.is(reachable.size, 1);
t.true(reachable.has(mavenRegistry));
t.false(reachable.has(nugetFeed));
});
checkExpectedLogMessages(t, messages, [
`Testing connection to ${mavenRegistry.url}`,
@@ -86,7 +85,6 @@ test("checkConnections - handles other exceptions", async (t) => {
const reachable = await checkConnections(logger, proxyInfo, backend);
t.is(reachable.size, 1);
t.true(reachable.has(mavenRegistry));
t.false(reachable.has(nugetFeed));
});
checkExpectedLogMessages(t, messages, [
`Testing connection to ${mavenRegistry.url}`,