mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
test: fix the arguments order in assert.strictEqual
PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
committed by
Rich Trott
parent
a3d9168293
commit
092ab7a1d3
@@ -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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user