summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2024-02-01 15:17:41 -0500
committerAndrew Dunstan <andrew@dunslane.net>2024-02-01 15:30:54 -0500
commit53ea383da8e8c93b370f797b19444a87b6cede9c (patch)
tree65e8f664725f059d55d962f9b9c3e7647bed9d39
parent7af96a66f43cdb0b07956a36412b3b0da260b56e (diff)
Avoid package qualification of $windows_os
Further fallout from commit 6ee26c6a4b. To keep code in sync and avoid issues on older releases with different package names, simply use the unqualified name like many other places in our code.
-rw-r--r--src/bin/pg_rewind/t/003_extrafiles.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_rewind/t/003_extrafiles.pl b/src/bin/pg_rewind/t/003_extrafiles.pl
index ae110a9afd1..aa4472750a8 100644
--- a/src/bin/pg_rewind/t/003_extrafiles.pl
+++ b/src/bin/pg_rewind/t/003_extrafiles.pl
@@ -71,7 +71,7 @@ sub run_test
# File::Find converts backslashes to slashes in the newer Perl
# versions. To support all Perl versions, do the same conversion
# for Windows before comparing the paths.
- if ($PostgreSQL::Test::Utils::windows_os)
+ if ($windows_os)
{
for my $filename (@paths)
{