diff options
Diffstat (limited to 'src/test/modules/commit_ts/t/004_restart.pl')
-rw-r--r-- | src/test/modules/commit_ts/t/004_restart.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/modules/commit_ts/t/004_restart.pl b/src/test/modules/commit_ts/t/004_restart.pl index 40d1b1a945f..808164c34da 100644 --- a/src/test/modules/commit_ts/t/004_restart.pl +++ b/src/test/modules/commit_ts/t/004_restart.pl @@ -6,7 +6,7 @@ use strict; use warnings; use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; -use Test::More tests => 16; +use Test::More; my $node_primary = PostgreSQL::Test::Cluster->new('primary'); $node_primary->init(allows_streaming => 1); @@ -150,3 +150,5 @@ is($after_enable_disabled_ts, '', 'timestamp of disabled tx null after re-enable'); $node_primary->stop; + +done_testing(); |