Skip to content

Commit

Permalink
test: fix arguments order in assert.strictEqual
Browse files Browse the repository at this point in the history
PR-URL: #24608
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Masashi Hirano <shisama07@gmail.com>
  • Loading branch information
grimrose authored and targos committed Nov 28, 2018
1 parent 6f42b98 commit f8acf73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-http-pause.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ server.listen(0, function() {
});

process.on('exit', () => {
assert.strictEqual(expectedServer, resultServer);
assert.strictEqual(expectedClient, resultClient);
assert.strictEqual(resultServer, expectedServer);
assert.strictEqual(resultClient, expectedClient);
});

0 comments on commit f8acf73

Please sign in to comment.