From 5aab0f07038d92eb76e731ab9d1a4dddac9a7d52 Mon Sep 17 00:00:00 2001 From: reshke Date: Tue, 23 Dec 2025 05:32:06 +0000 Subject: [PATCH] Fix initdb TAP tests. Currently initdb TAP tests fails due to number-of-checks assertions. Trivially fix specifying correct number of tests --- src/bin/initdb/t/001_initdb.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/initdb/t/001_initdb.pl b/src/bin/initdb/t/001_initdb.pl index b5f3cd632da..7d3ab3e38cd 100644 --- a/src/bin/initdb/t/001_initdb.pl +++ b/src/bin/initdb/t/001_initdb.pl @@ -11,7 +11,7 @@ use File::stat qw{lstat}; use PostgresNode; use TestLib; -use Test::More tests => 22; +use Test::More tests => 22 + 2; my $tempdir = TestLib::tempdir; my $xlogdir = "$tempdir/pgxlog";