diff options
Diffstat (limited to 'test/parallel/test-next-tick-ordering2.js')
-rw-r--r-- | test/parallel/test-next-tick-ordering2.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-next-tick-ordering2.js b/test/parallel/test-next-tick-ordering2.js index 70f7611dba..11ac84b531 100644 --- a/test/parallel/test-next-tick-ordering2.js +++ b/test/parallel/test-next-tick-ordering2.js @@ -14,5 +14,5 @@ process.nextTick(function() { }); process.on('exit', function() { - assert.deepEqual(order, ['nextTick', 'setTimeout']); + assert.deepStrictEqual(order, ['nextTick', 'setTimeout']); }); |