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: corrected the order of arguments in assert.strictEqual()
  • Loading branch information
parisandmilo committed Oct 12, 2018
commit 4af4cede329e415d3c2e8e4161b93ff04b81e241
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);
});
}