# HG changeset patch # User Andrey Zelenkov # Date 1482158881 -10800 # Node ID 52553ea2171c2d510af1db3b59d90826114869a8 # Parent dd3031bbc705ea83b7ec555d9a352b61bd5eb9cd Tests: fixed ssl.t when run in parallel. diff --git a/ssl.t b/ssl.t --- a/ssl.t +++ b/ssl.t @@ -239,7 +239,7 @@ like(get('/id', 8085), qr/^body \w{64}$/ unlike(http_get('/id'), qr/body \w/, 'session id no ssl'); like(get('/cipher', 8085), qr/^body [\w-]+$/m, 'cipher'); -$s = get_ssl_socket(undef, 8085); +$s = get_ssl_socket(undef, port(8085)); like(http_get('/ciphers', socket => $s), qr/^body [:\w-]+$/m, 'ciphers'); like(get('/client_verify', 8085), qr/^body NONE$/m, 'client verify');