summaryrefslogtreecommitdiffstats
path: root/test/recipes/70-test_tls13cookie.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/recipes/70-test_tls13cookie.t')
-rw-r--r--test/recipes/70-test_tls13cookie.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/recipes/70-test_tls13cookie.t b/test/recipes/70-test_tls13cookie.t
index cc0cfd3aff..ead0f37cf8 100644
--- a/test/recipes/70-test_tls13cookie.t
+++ b/test/recipes/70-test_tls13cookie.t
@@ -44,11 +44,11 @@ my $testtype;
#Test 1: Inserting a cookie into an HRR should see it echoed in the ClientHello
$testtype = COOKIE_ONLY;
$proxy->filter(\&cookie_filter);
-$proxy->serverflags("-curves X25519") if !disabled("ec");
+$proxy->serverflags("-curves X25519") if !disabled("ecx");
$proxy->start() or plan skip_all => "Unable to start up Proxy for tests";
plan tests => 2;
SKIP: {
- skip "EC disabled", 1, if disabled("ec");
+ skip "ECX disabled", 1, if (disabled("ecx"));
ok(TLSProxy::Message->success() && $cookieseen == 1, "Cookie seen");
}
@@ -58,7 +58,7 @@ SKIP: {
# required
$testtype = COOKIE_AND_KEY_SHARE;
$proxy->clear();
-if (disabled("ec")) {
+if (disabled("ecx")) {
$proxy->clientflags("-curves ffdhe3072:ffdhe2048");
$proxy->serverflags("-curves ffdhe2048");
} else {