Skip to content

Commit

Permalink
test: tls switch arguments order for the assertion
Browse files Browse the repository at this point in the history
PR-URL: #28340
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
ltciro authored and targos committed Jul 2, 2019
1 parent 4bca4a5 commit ecf4494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-tls-net-connect-prefer-path.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function testLib(lib, cb) {
}));
client.on('end', common.mustCall(() => {
const resp = Buffer.concat(bufs).toString();
assert.strictEqual(`${libName(lib)}:${unixServer.address()}`, resp);
assert.strictEqual(resp, `${libName(lib)}:${unixServer.address()}`);
tcpServer.close();
unixServer.close();
cb();
Expand Down

0 comments on commit ecf4494

Please sign in to comment.