diff options
Diffstat (limited to 'src/bin/pg_verifybackup/t/009_extract.pl')
-rw-r--r-- | src/bin/pg_verifybackup/t/009_extract.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/pg_verifybackup/t/009_extract.pl b/src/bin/pg_verifybackup/t/009_extract.pl index 9f9a7cc6a5f..c51cdf79f8c 100644 --- a/src/bin/pg_verifybackup/t/009_extract.pl +++ b/src/bin/pg_verifybackup/t/009_extract.pl @@ -11,8 +11,7 @@ use Config; use File::Path qw(rmtree); use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; -use Test::More tests => 6; - +use Test::More; my $primary = PostgreSQL::Test::Cluster->new('primary'); $primary->init(allows_streaming => 1); $primary->start; @@ -64,3 +63,5 @@ for my $tc (@test_configuration) # Remove backup immediately to save disk space. rmtree($backup_path); } + +done_testing(); |