summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-11-14 14:53:31 +0000
committerMatt Caswell <matt@openssl.org>2016-11-16 10:09:46 +0000
commit94ed2c6739754d13306fe510bb8bc19c2ad42749 (patch)
tree67da8a666d5978f9ed20161b71d216ed10df735d /test
parent5a8e54d9dc99dcc54b10e78ba0901e185fd2f77d (diff)
Fixed various style issues in the key_share code
Numerous style issues as well as references to TLS1_3_VERSION instead of SSL_IS_TLS13(s) Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/recipes/70-test_tlsextms.t4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/recipes/70-test_tlsextms.t b/test/recipes/70-test_tlsextms.t
index dd2a6a47f6..dc6cf75cbe 100644
--- a/test/recipes/70-test_tlsextms.t
+++ b/test/recipes/70-test_tlsextms.t
@@ -57,9 +57,7 @@ setrmextms(0, 0);
$proxy->clientflags("-no_tls1_3");
$proxy->start() or plan skip_all => "Unable to start up Proxy for tests";
my $numtests = 9;
-if (!disabled("tls1_3")) {
- $numtests++;
-}
+$numtests++ if (!disabled("tls1_3"));
plan tests => $numtests;
checkmessages(1, "Default extended master secret test", 1, 1, 1);