From a2f57b06b018b254bee93e1a1265cfc09833366f Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 9 Feb 2021 11:32:15 -0700 Subject: [PATCH] t/run/locale.t: Rmv LANGUAGE from environment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This could cause interference with our tests on some platforms that have this environment variable. Signed-off-by: Petr Písař --- t/run/locale.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/run/locale.t b/t/run/locale.t index 8a04d1aea6..0f2a2ba457 100644 --- a/t/run/locale.t +++ b/t/run/locale.t @@ -38,7 +38,7 @@ if (defined $ARGV[0] && $ARGV[0] ne "") { } # reset the locale environment -delete local @ENV{'LANG', (grep /^LC_[A-Z]+$/, keys %ENV)}; +delete local @ENV{'LANGUAGE', 'LANG', (grep /^LC_[A-Z]+$/, keys %ENV)}; # If user wants this to happen, they set the environment variable AND use # 'debug' -- 2.26.2