diff options
Diffstat (limited to 'src/test/subscription/t/014_binary.pl')
-rw-r--r-- | src/test/subscription/t/014_binary.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/subscription/t/014_binary.pl b/src/test/subscription/t/014_binary.pl index f3cfcbb00ef..a1f03e7adc2 100644 --- a/src/test/subscription/t/014_binary.pl +++ b/src/test/subscription/t/014_binary.pl @@ -7,7 +7,7 @@ use strict; use warnings; use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; -use Test::More tests => 5; +use Test::More; # Create and initialize a publisher node my $node_publisher = PostgreSQL::Test::Cluster->new('publisher'); @@ -135,3 +135,5 @@ is( $result, '{1,2,3}|{42,1.2,1.3}| $node_subscriber->stop('fast'); $node_publisher->stop('fast'); + +done_testing(); |