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 <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>
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

Lines changed: 1 addition & 1 deletion
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)