Skip to content

Commit a76811c

Browse files
committed
test: fix crypto-stream after openssl update
PR-URL: #289 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
1 parent ced41b0 commit a76811c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parallel/test-crypto-stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ var key = new Buffer('48fb56eb10ffeb13fc0ef551bbca3b1b', 'hex'),
7070

7171
cipher.pipe(decipher)
7272
.on('error', common.mustCall(function end(err) {
73-
assert(/Unsupported/.test(err));
73+
assert(/bad decrypt/.test(err));
7474
}));
7575

7676
cipher.end('Papaya!'); // Should not cause an unhandled exception.

0 commit comments

Comments
 (0)