diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2024-02-01 15:17:41 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2024-02-01 15:30:23 -0500 |
commit | 709d6fbcacd6cc2327cdb20ee0db502a34cbc884 (patch) | |
tree | 3458b7e228f4880b95aba8ae75ed09152b0460f1 | |
parent | 2e822a1d62d0f78b7d471076ea982cd0734cc875 (diff) | |
download | postgresql-709d6fbcacd6cc2327cdb20ee0db502a34cbc884.tar.gz postgresql-709d6fbcacd6cc2327cdb20ee0db502a34cbc884.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.
-rw-r--r-- | src/bin/pg_rewind/t/003_extrafiles.pl | 2 |
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 5629c93a6b9..5dc442f28ec 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) { |