summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan2024-02-01 20:17:41 +0000
committerAndrew Dunstan2024-02-01 20:19:56 +0000
commit2e7061431b8b52163012164bd5464d2363f903c7 (patch)
treed464eaa7a51e8768f61f40eb2b57e919b34cfb9c /src
parent19a829a3270fb083b3d6ae967cd3b3c02a170a38 (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.
Diffstat (limited to 'src')
-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 7e4c2771ce7..bab4b73d31f 100644
--- a/src/bin/pg_rewind/t/003_extrafiles.pl
+++ b/src/bin/pg_rewind/t/003_extrafiles.pl
@@ -82,7 +82,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)
{