Skip to content

Commit 9e387fb

Browse files
indutnyJulien Gilli
authored and
Julien Gilli
committed
test: fix crypto-stream after openssl update
Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Timothy J Fontaine <[email protected]> Reviewed-By: Julien Gilli <[email protected]>
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

+1-1
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)