aboutsummaryrefslogtreecommitdiff
path: root/src
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:33:58 -0500
commit90bad72cbbb3293c4aa11cd8e1a5939c200e7115 (patch)
tree7cb1234e96f36ca37e86171a038c86637d3602d1 /src
parent62f12020314792cafc7d5e631a3c98cfd33b5fb9 (diff)
downloadpostgresql-90bad72cbbb3293c4aa11cd8e1a5939c200e7115.tar.gz
postgresql-90bad72cbbb3293c4aa11cd8e1a5939c200e7115.zip
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 d0840dcbe3d..2e06abb9237 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)
{