From 53ef8c284a87533691b2ab606fed0d780cd13efc Mon Sep 17 00:00:00 2001 From: Ivan Villa Date: Fri, 21 Jun 2019 16:38:52 -0500 Subject: [PATCH] test: switch the argument order for the assertion --- test/parallel/test-next-tick-errors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-next-tick-errors.js b/test/parallel/test-next-tick-errors.js index bf142bb351334d..c561d555e15d77 100644 --- a/test/parallel/test-next-tick-errors.js +++ b/test/parallel/test-next-tick-errors.js @@ -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']); });