Skip to content

Commit

Permalink
test: fix the arguments order in assert.strictEqual
Browse files Browse the repository at this point in the history
PR-URL: #24416
Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
jarthana authored and codebytere committed Jan 29, 2019
1 parent be56fb7 commit abe9778
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pummel/test-http-many-keep-alive-connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ server.listen(common.PORT, function connect() {
});

process.on('exit', function() {
assert.strictEqual(expected, responses);
assert.strictEqual(expected, requests);
assert.strictEqual(responses, expected);
assert.strictEqual(requests, expected);
});

0 comments on commit abe9778

Please sign in to comment.