diff options
-rw-r--r-- | src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl | 2 |
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'; } |