diff options
Diffstat (limited to 'src/test/modules/brin/t/01_workitems.pl')
-rw-r--r-- | src/test/modules/brin/t/01_workitems.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/modules/brin/t/01_workitems.pl b/src/test/modules/brin/t/01_workitems.pl index 2c9a206ae5e..3108c02cf4d 100644 --- a/src/test/modules/brin/t/01_workitems.pl +++ b/src/test/modules/brin/t/01_workitems.pl @@ -7,7 +7,7 @@ use strict; use warnings; use PostgreSQL::Test::Utils; -use Test::More tests => 2; +use Test::More; use PostgreSQL::Test::Cluster; my $node = PostgreSQL::Test::Cluster->new('tango'); @@ -42,3 +42,5 @@ $count = $node->safe_psql('postgres', ); is($count, 't', "index got summarized"); $node->stop; + +done_testing(); |