diff options
Diffstat (limited to 'test/parallel/test-promises-unhandled-rejections.js')
-rw-r--r-- | test/parallel/test-promises-unhandled-rejections.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-promises-unhandled-rejections.js b/test/parallel/test-promises-unhandled-rejections.js index 5da2bff00a..3c7a403805 100644 --- a/test/parallel/test-promises-unhandled-rejections.js +++ b/test/parallel/test-promises-unhandled-rejections.js @@ -658,7 +658,7 @@ asyncTest('nextTick is immediately scheduled when called inside an event' + }); setTimeout(function() { order.push(2); - assert.deepEqual([1, 2], order); + assert.deepStrictEqual([1, 2], order); done(); }, 1); }); |