Skip to content

Commit deb9d23

Browse files
author
Shigeki Ohtsu
committed
test: fix error message check for openssl-1.0.2a
openssl-1.0.2a does not include function name of SSL3_GET_CLIENT_HELLO in the error message Fixes: #589 PR-URL: #1389 Reviewed-By: Fedor Indutny <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 92dfb79 commit deb9d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-tls-no-sslv3.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ server.listen(common.PORT, '127.0.0.1', function() {
3636
});
3737

3838
server.once('clientError', common.mustCall(function(err, conn) {
39-
assert(/SSL3_GET_CLIENT_HELLO:wrong version number/.test(err.message));
39+
assert(/:wrong version number/.test(err.message));
4040
}));

0 commit comments

Comments
 (0)