diff options
Diffstat (limited to 'src/bin/pg_dump/t/003_pg_dump_with_server.pl')
-rw-r--r-- | src/bin/pg_dump/t/003_pg_dump_with_server.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/pg_dump/t/003_pg_dump_with_server.pl b/src/bin/pg_dump/t/003_pg_dump_with_server.pl index 43c9a9fbf89..528db179cbd 100644 --- a/src/bin/pg_dump/t/003_pg_dump_with_server.pl +++ b/src/bin/pg_dump/t/003_pg_dump_with_server.pl @@ -6,7 +6,7 @@ use warnings; use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; -use Test::More tests => 3; +use Test::More; my $tempdir = PostgreSQL::Test::Utils::tempdir; @@ -36,3 +36,5 @@ command_fails_like( command_ok( [ "pg_dump", '-p', $port, '-a', '--include-foreign-data=s2', 'postgres' ], "dump foreign server with no tables"); + +done_testing(); |