Skip to content

Commit

Permalink
Fix order of language identifiers in test
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc committed Mar 16, 2022
1 parent b0f1608 commit 321940e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions provider/cldr/src/transform/locale_canonicalizer/aliases.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ fn test_rules_cmp() {
assert_eq!(union_size(&rules[3]), 2);

rules.sort_unstable_by(rules_cmp);
assert_eq!(rules[0], "und-hepburn-heploc");
assert_eq!(rules[1], "en-GB");
assert_eq!(rules[2], "fr-CA");
assert_eq!(rules[0], "en-GB");
assert_eq!(rules[1], "fr-CA");
assert_eq!(rules[2], "und-hepburn-heploc");
assert_eq!(rules[3], "CA");
}

Expand Down

0 comments on commit 321940e

Please sign in to comment.