From 57ea7a7a9793a214473302719869c2d41510fc61 Mon Sep 17 00:00:00 2001 From: Pauli Date: Fri, 7 Feb 2020 09:00:15 +1000 Subject: [PATCH] test_dsa: fix deprecation logic Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10977) --- test/recipes/15-test_dsa.t | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/recipes/15-test_dsa.t b/test/recipes/15-test_dsa.t index 90193fc1b7..aa8c75a93a 100644 --- a/test/recipes/15-test_dsa.t +++ b/test/recipes/15-test_dsa.t @@ -20,8 +20,7 @@ plan skip_all => 'DSA is not supported in this build' if disabled('dsa'); plan tests => 7; my $deprecated_dsa = - disabled('deprecated') - && (!defined config('api') || config('api') >= 30000); + disabled('deprecated') || !defined config('api') || config('api') >= 30000; require_ok(srctop_file('test','recipes','tconversion.pl')); -- 2.25.1