From 75e314f2d573d4f984ff6a371be7a4966bf5f4c5 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 7 Mar 2017 16:21:38 +0000 Subject: [PATCH] Fix the number of tests to skip if TLSv1.3 is disabled Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2875) --- test/recipes/70-test_sslrecords.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/recipes/70-test_sslrecords.t b/test/recipes/70-test_sslrecords.t index 135f76fa11..ee49cb3f85 100644 --- a/test/recipes/70-test_sslrecords.t +++ b/test/recipes/70-test_sslrecords.t @@ -147,7 +147,7 @@ ok(TLSProxy::Message->fail(), "Changed record version in TLS1.2"); #TLS1.3 specific tests SKIP: { - skip "TLSv1.3 disabled", 4 if disabled("tls1_3"); + skip "TLSv1.3 disabled", 6 if disabled("tls1_3"); #Test 13: Sending a different record version in TLS1.3 should succeed $proxy->clear(); -- 2.34.1