Skip to content

Commit ac95c2f

Browse files
oksemonenkoTrott
authored andcommitted
test: change expected and actual values in assert call
PR-URL: #27881 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]> Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 4b74dae commit ac95c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-crypto-lazy-transform-writable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const stream = new OldStream();
2828

2929
stream.pipe(hasher2).on('finish', common.mustCall(function() {
3030
const hash = hasher2.read().toString('hex');
31-
assert.strictEqual(expected, hash);
31+
assert.strictEqual(hash, expected);
3232
}));
3333

3434
stream.emit('data', Buffer.from('hello'));

0 commit comments

Comments
 (0)