Skip to content

Commit b5e74e8

Browse files
committed
test: change expected and actual values in assert call
1 parent ff8539e commit b5e74e8

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)