Skip to content

Commit 12d7107

Browse files
sakit0rvagg
authored andcommitted
test: fix assert.strictEqual
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>
1 parent 8a91fc1 commit 12d7107

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-stream-writev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function test(decode, uncork, multi, next) {
115115
w.on('finish', function() {
116116
// make sure finish comes after all the write cb
117117
cnt('finish')();
118-
assert.deepStrictEqual(expectChunks, actualChunks);
118+
assert.deepStrictEqual(actualChunks, expectChunks);
119119
next();
120120
});
121121
}

0 commit comments

Comments
 (0)