Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 9e387fb

Browse files
indutnyJulien Gilli
authored andcommitted
test: fix crypto-stream after openssl update
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Timothy J Fontaine <tjfontaine@gmail.com> Reviewed-By: Julien Gilli <julien.gilli@joyent.com>
1 parent f5e9b6e commit 9e387fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/simple/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(/:00000000:/.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)