diff options
author | Peter Eisentraut | 2017-06-15 13:19:12 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-06-15 13:19:12 +0000 |
commit | 878b7d9eaa9cbf5f121f9ee8676d82b22decedf0 (patch) | |
tree | e0920f62b1ec0f5d304f203a7e52b5519b40089f | |
parent | e800656d9a9b40b2f55afabe76354ab6d93353b3 (diff) |
Remove unnecessary IPC::Run inclusion
This is no longer needed because the tests use PostgresNode.
Reported-by: Michael Paquier <[email protected]>
-rw-r--r-- | src/test/ssl/t/001_ssltests.pl | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ssl/t/001_ssltests.pl b/src/test/ssl/t/001_ssltests.pl index 66fa790d12..f8847e3932 100644 --- a/src/test/ssl/t/001_ssltests.pl +++ b/src/test/ssl/t/001_ssltests.pl @@ -6,19 +6,6 @@ use Test::More tests => 40; use ServerSetup; use File::Copy; -# Like TestLib.pm, we use IPC::Run -BEGIN -{ - eval { - require IPC::Run; - import IPC::Run qw(run start); - 1; - } or do - { - plan skip_all => "IPC::Run not available"; - } -} - #### Some configuration # This is the hostname used to connect to the server. This cannot be a |