test: fix assert.strictEqual
PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
parent
c5db2df325
commit
7b50258e42
@ -115,7 +115,7 @@ function test(decode, uncork, multi, next) {
|
|||||||
w.on('finish', function() {
|
w.on('finish', function() {
|
||||||
// make sure finish comes after all the write cb
|
// make sure finish comes after all the write cb
|
||||||
cnt('finish')();
|
cnt('finish')();
|
||||||
assert.deepStrictEqual(expectChunks, actualChunks);
|
assert.deepStrictEqual(actualChunks, expectChunks);
|
||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user