Skip to content

Commit 127eff6

Browse files
committed
test: fix error messages for OpenSSL-1.0.2p
After upgradeing OpenSSL-1.0.2p, test-tls-passphrase.js was failed due to change of error messages. Ref: openssl/openssl@18026c0
1 parent d581739 commit 127eff6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parallel/test-tls-passphrase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ server.listen(0, common.mustCall(function() {
221221
}, common.mustCall());
222222
})).unref();
223223

224-
const errMessagePassword = /bad password read/;
224+
const errMessagePassword = /bad decrypt/;
225225

226226
// Missing passphrase
227227
assert.throws(function() {

0 commit comments

Comments
 (0)