aboutsummaryrefslogtreecommitdiff
path: root/src/test/recovery/t/012_subtransactions.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/recovery/t/012_subtransactions.pl')
-rw-r--r--src/test/recovery/t/012_subtransactions.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/recovery/t/012_subtransactions.pl b/src/test/recovery/t/012_subtransactions.pl
index 2a558b23017..f8075097a96 100644
--- a/src/test/recovery/t/012_subtransactions.pl
+++ b/src/test/recovery/t/012_subtransactions.pl
@@ -7,7 +7,7 @@ use warnings;
use PostgreSQL::Test::Cluster;
use PostgreSQL::Test::Utils;
-use Test::More tests => 12;
+use Test::More;
# Setup primary node
my $node_primary = PostgreSQL::Test::Cluster->new("primary");
@@ -214,3 +214,5 @@ $node_primary->psql(
"SELECT coalesce(sum(id),-1) FROM t_012_tbl",
stdout => \$psql_out);
is($psql_out, '-1', "Not visible");
+
+done_testing();