Skip to content

Commit

Permalink
test: fix assertion argument order in test-https-agent.js
Browse files Browse the repository at this point in the history
PR-URL: #28383
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
JulianAlexis authored and targos committed Jul 20, 2019
1 parent cbf5401 commit 49c5339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-https-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ server.listen(0, function() {


process.on('exit', function() {
assert.strictEqual(N * M, responses);
assert.strictEqual(responses, N * M);
});

0 comments on commit 49c5339

Please sign in to comment.