summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2021-08-01 13:03:15 -0400
committerAndrew Dunstan <andrew@dunslane.net>2021-08-01 13:03:15 -0400
commit0d1401931868e03342ed4689b5af2522eb40f750 (patch)
treebae7a8b94add7375325f28a91fe72f9fffca68e8
parent64a1f225654f8866422010ff28e0d3384ae4c3af (diff)
Silence perl warning about uninitialized value
-rw-r--r--src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl b/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl
index 0a45fc1b75e..1f28f303f1a 100644
--- a/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl
+++ b/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl
@@ -10,7 +10,7 @@ use TestLib;
use Test::More;
use PostgresNode;
-unless ($ENV{with_ssl} eq 'openssl')
+unless (($ENV{with_ssl} || "") eq 'openssl')
{
plan skip_all => 'OpenSSL not supported by this build';
}