We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd93429 commit 2af576bCopy full SHA for 2af576b
tests/by-util/test_sort.rs
@@ -2480,13 +2480,13 @@ fn test_locale_collation_c_locale() {
2480
2481
#[test]
2482
fn test_locale_collation_utf8() {
2483
- // Test UTF-8 locale handling - behavior depends on i18n-collator feature
+ // Test French UTF-8 locale handling - behavior depends on i18n-collator feature
2484
// With feature: locale-aware collation (é sorts near e)
2485
// Without feature: byte order (é after z, since 0xC3A9 > 0x7A)
2486
let input = "z\né\ne\na\n";
2487
2488
let result = new_ucmd!()
2489
- .env("LC_ALL", "en_US.UTF-8")
+ .env("LC_ALL", "fr_FR.UTF-8")
2490
.pipe_in(input)
2491
.succeeds();
2492
0 commit comments