Skip to content

Commit ecf4494

Browse files
ltcirotargos
authored andcommitted
test: tls switch arguments order for the assertion
PR-URL: #28340 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 4bca4a5 commit ecf4494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-tls-net-connect-prefer-path.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function testLib(lib, cb) {
5252
}));
5353
client.on('end', common.mustCall(() => {
5454
const resp = Buffer.concat(bufs).toString();
55-
assert.strictEqual(`${libName(lib)}:${unixServer.address()}`, resp);
55+
assert.strictEqual(resp, `${libName(lib)}:${unixServer.address()}`);
5656
tcpServer.close();
5757
unixServer.close();
5858
cb();

0 commit comments

Comments
 (0)