Skip to content

Commit

Permalink
test: fix the arguments order in assert.strictEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
jarthana committed Nov 19, 2018
1 parent 07a7bf7 commit f575ca4
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 f575ca4

Please sign in to comment.