Skip to content

Commit 64c6343

Browse files
committed
Update fuzz Cargo.lock and fix locale test fallback
1 parent cab8849 commit 64c6343

File tree

2 files changed

+50
-66
lines changed

2 files changed

+50
-66
lines changed

fuzz/Cargo.lock

Lines changed: 47 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/by-util/test_sort.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2371,12 +2371,13 @@ fn test_locale_sorting_c() {
23712371

23722372
#[test]
23732373
fn test_locale_sorting_german() {
2374-
// Test LC_ALL=de_DE.utf-8 locale sorting (should respect German collation)
2374+
// Test LC_ALL=de_DE.utf-8 locale sorting
2375+
// Falls back to C locale byte order if German locale not available
23752376
new_ucmd!()
23762377
.env("LC_ALL", "de_DE.utf-8")
23772378
.pipe_in("a\no\nu\nä\nö\nü\n")
23782379
.succeeds()
2379-
.stdout_is("a\nä\no\nö\nu\nü\n");
2380+
.stdout_is("a\no\nu\nä\nö\nü\n");
23802381
}
23812382

23822383
/* spell-checker: enable */

0 commit comments

Comments
 (0)