Skip to content

Commit 0a08cd7

Browse files
jarthanarvagg
authored andcommitted
test: fix the arguments order in assert.strictEqual
PR-URL: #24416 Reviewed-By: Ouyang Yadong <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent dd89cfe commit 0a08cd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/pummel/test-http-many-keep-alive-connections.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ server.listen(common.PORT, function connect() {
6464
});
6565

6666
process.on('exit', function() {
67-
assert.strictEqual(expected, responses);
68-
assert.strictEqual(expected, requests);
67+
assert.strictEqual(responses, expected);
68+
assert.strictEqual(requests, expected);
6969
});

0 commit comments

Comments
 (0)