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:
mki-skt 2018-11-24 17:03:30 +09:00 committed by Gireesh Punathil
parent c5db2df325
commit 7b50258e42

View File

@ -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();
});
}