Skip to content

Commit

Permalink
test: corrected the order of arguments in assert.strictEqual()
Browse files Browse the repository at this point in the history
PR-URL: #23528
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
parisandmilo authored and MylesBorins committed Oct 30, 2018
1 parent 8e69895 commit 5d7c15b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pummel/test-tls-securepair-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ function test(keyfn, certfn, check, next) {


process.on('exit', function() {
assert.strictEqual(0, serverExitCode);
assert.strictEqual('WAIT-SERVER-CLOSE', state);
assert.strictEqual(serverExitCode, 0);
assert.strictEqual(state, 'WAIT-SERVER-CLOSE');
assert.ok(gotWriteCallback);
});
}

0 comments on commit 5d7c15b

Please sign in to comment.