Skip to content

Commit e34adb2

Browse files
committed
fix silly perl error in commit d064afc
1 parent d673905 commit e34adb2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/perl/PostgresNode.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,8 +1123,7 @@ sub get_free_port
11231123
if ($found == 1)
11241124
{
11251125
foreach my $addr (qw(127.0.0.1),
1126-
$use_tcp ? qw(127.0.0.2 127.0.0.3 0.0.0.0) : ())
1127-
$use_tcp && $TestLib::windows_os
1126+
($use_tcp && $TestLib::windows_os)
11281127
? qw(127.0.0.2 127.0.0.3 0.0.0.0)
11291128
: ())
11301129
{

0 commit comments

Comments
 (0)