summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream-push-order.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-stream-push-order.js')
-rw-r--r--test/parallel/test-stream-push-order.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-stream-push-order.js b/test/parallel/test-stream-push-order.js
index f09cf95f37..7c1b2602f6 100644
--- a/test/parallel/test-stream-push-order.js
+++ b/test/parallel/test-stream-push-order.js
@@ -26,7 +26,7 @@ s.read(0);
// ACTUALLY [1, 3, 5, 6, 4, 2]
process.on('exit', function() {
- assert.deepEqual(s._readableState.buffer,
- ['1', '2', '3', '4', '5', '6']);
+ assert.deepStrictEqual(s._readableState.buffer,
+ ['1', '2', '3', '4', '5', '6']);
console.log('ok');
});