From 032eac7dc034c3b7a50346d6cabd3e4084795904 Mon Sep 17 00:00:00 2001 From: Sveta Smirnova Date: Thu, 20 Nov 2025 23:12:15 +0300 Subject: [PATCH] PT-2489 - t/pt-mext/pt-mext.t fails on Debian-based platforms - Changed locale C to en_US.utf8. Added LANG=en_US.utf8 to keep sort working on our AMIs and kept LOCALE=en_US.utf8 to keep fix for PT-2149 --- t/pt-mext/pt-mext.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/pt-mext/pt-mext.t b/t/pt-mext/pt-mext.t index 73d28080..119af85c 100644 --- a/t/pt-mext/pt-mext.t +++ b/t/pt-mext/pt-mext.t @@ -26,7 +26,7 @@ ok( no_diff( "$cmd -- cat $sample/mext-001.txt", "t/pt-mext/samples/mext-001-result.txt", - post_pipe => "LOCALE=C sort -k1,1", + post_pipe => "LOCALE=en_US.utf8 LANG=en_US.UTF-8 sort -k1,1", ), "mext-001" ) or diag($test_diff); @@ -35,7 +35,7 @@ ok( no_diff( "$cmd -r -- cat $sample/mext-002.txt", "t/pt-mext/samples/mext-002-result.txt", - post_pipe => "LOCALE=C sort -k1,1", + post_pipe => "LOCALE=en_US.utf8 LANG=en_US.UTF-8 sort -k1,1", ), "mext-002 -r" ) or diag($test_diff);