Skip to content

Commit 7ccb042

Browse files
shigekirvagg
authored andcommittedAug 15, 2018
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 <rod@vagg.org>
1 parent dbe6551 commit 7ccb042

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
@@ -200,7 +200,7 @@ server.listen(0, common.mustCall(function() {
200200
}, common.mustCall());
201201
})).unref();
202202

203-
const errMessagePassword = /bad password read/;
203+
const errMessagePassword = /bad decrypt/;
204204

205205
// Missing passphrase
206206
assert.throws(function() {

0 commit comments

Comments
 (0)
Please sign in to comment.