Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: tsl switch arguments order for the assertion
  • Loading branch information
ltciro committed Jun 21, 2019
commit b8d0199b8013ea8b9c2ea75a078b2d35b057225c
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