Skip to content

Commit 3139897

Browse files
shigekirvagg
authored andcommitted
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 PR-URL: #22320 Reviewed-By: Rod Vagg <[email protected]>
1 parent 8f59838 commit 3139897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-tls-passphrase.js

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