Skip to content

Commit af3992b

Browse files
IvanVilla1585addaleax
authored andcommitted
test: switch the argument order for the assertion
PR-URL: #28356 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 41fad84 commit af3992b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-next-tick-errors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ process.on('uncaughtException', function(err, errorOrigin) {
7474
});
7575

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

0 commit comments

Comments
 (0)