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 targos committed Jul 20, 2019
1 parent e83b256 commit f0c436f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-next-tick-errors.js
Original file line number Diff line number Diff line change
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 f0c436f

Please sign in to comment.