Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: fix assert.strictEqual
  • Loading branch information
sakit0 committed Nov 24, 2018
commit d30ba47f4fd880ffdc4b08e22f7257626b045c39
2 changes: 1 addition & 1 deletion test/parallel/test-stream-writev.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function test(decode, uncork, multi, next) {
w.on('finish', function() {
// make sure finish comes after all the write cb
cnt('finish')();
assert.deepStrictEqual(expectChunks, actualChunks);
assert.deepStrictEqual(actualChunks, expectChunks);
next();
});
}