aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_verifybackup/t/001_basic.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/pg_verifybackup/t/001_basic.pl')
-rw-r--r--src/bin/pg_verifybackup/t/001_basic.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/pg_verifybackup/t/001_basic.pl b/src/bin/pg_verifybackup/t/001_basic.pl
index 452f753ab32..16febf9764c 100644
--- a/src/bin/pg_verifybackup/t/001_basic.pl
+++ b/src/bin/pg_verifybackup/t/001_basic.pl
@@ -4,7 +4,7 @@
use strict;
use warnings;
use PostgreSQL::Test::Utils;
-use Test::More tests => 16;
+use Test::More;
my $tempdir = PostgreSQL::Test::Utils::tempdir;
@@ -34,3 +34,5 @@ command_fails_like(
[ 'pg_verifybackup', '-m', "$tempdir/not_the_manifest", $tempdir ],
qr/could not open file.*\/not_the_manifest\"/,
'pg_verifybackup respects -m flag');
+
+done_testing();