aboutsummaryrefslogtreecommitdiff
path: root/src/test/subscription/t/012_collation.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/subscription/t/012_collation.pl')
-rw-r--r--src/test/subscription/t/012_collation.pl8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/test/subscription/t/012_collation.pl b/src/test/subscription/t/012_collation.pl
index 8eb245712ed..2182f7948e4 100644
--- a/src/test/subscription/t/012_collation.pl
+++ b/src/test/subscription/t/012_collation.pl
@@ -9,11 +9,7 @@ use PostgreSQL::Test::Cluster;
use PostgreSQL::Test::Utils;
use Test::More;
-if ($ENV{with_icu} eq 'yes')
-{
- plan tests => 2;
-}
-else
+if ($ENV{with_icu} ne 'yes')
{
plan skip_all => 'ICU not supported by this build';
}
@@ -108,3 +104,5 @@ $node_publisher->wait_for_catchup('sub1');
is($node_subscriber->safe_psql('postgres', q{SELECT b FROM tab2}),
qq(bar),
'update with replica identity full with nondeterministic collation');
+
+done_testing();