Skip to content

Commit

Permalink
test: switch the argument order for the assertion
Browse files Browse the repository at this point in the history
PR-URL: #28356
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
IvanVilla1585 authored and addaleax committed Jul 3, 2019
1 parent 41fad84 commit af3992b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-next-tick-errors.js
Expand Up @@ -74,5 +74,5 @@ process.on('uncaughtException', function(err, errorOrigin) {
});

process.on('exit', function() {
assert.deepStrictEqual(['A', 'B', 'C'], order);
assert.deepStrictEqual(order, ['A', 'B', 'C']);
});

0 comments on commit af3992b

Please sign in to comment.