Skip to content

Commit b24ee07

Browse files
dayloryanesMylesBorins
authored andcommitted
test: remove unnecessary strictEqual() argument from remoteClose()
PR-URL: #20343 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent b5931e1 commit b24ee07

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/parallel/test-http-agent-keepalive.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ function remoteClose() {
9292
// waiting remote server close the socket
9393
setTimeout(common.mustCall(() => {
9494
assert.strictEqual(agent.sockets[name], undefined);
95-
assert.strictEqual(agent.freeSockets[name], undefined,
96-
'freeSockets is not empty');
95+
assert.strictEqual(agent.freeSockets[name], undefined);
9796
remoteError();
9897
}), common.platformTimeout(200));
9998
}));

0 commit comments

Comments
 (0)