Skip to content

Commit

Permalink
test: fix assert.strictEqual
Browse files Browse the repository at this point in the history
PR-URL: #24619
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
sakit0 authored and rvagg committed Nov 28, 2018
1 parent 8a91fc1 commit 12d7107
Showing 1 changed file with 1 addition and 1 deletion.
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();
});
}

0 comments on commit 12d7107

Please sign in to comment.