Skip to content

Commit

Permalink
ICU-22922 Integrate CLDR 47 release alpha1, part 5, updated unit test…
Browse files Browse the repository at this point in the history
…, again
  • Loading branch information
DraganBesevic committed Jan 30, 2025
1 parent 4e1d9b3 commit 95afc45
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -570,10 +570,10 @@ private void check2(Set<ULocale> sorted) {
public void testAsymmetry() {
LocaleMatcher matcher;
matcher = new LocaleMatcher("mul, de");
assertEquals("de", matcher.getBestMatch("gsw").toString()); // af => nl
assertEquals("de", matcher.getBestMatch("gsw").toString()); // gsw => de

matcher = new LocaleMatcher("mul, af");
assertEquals("mul", matcher.getBestMatch("nl").toString()); // but nl !=> af
matcher = new LocaleMatcher("mul, gsw");
assertEquals("mul", matcher.getBestMatch("de").toString()); // but de !=> gsw
}


Expand Down

0 comments on commit 95afc45

Please sign in to comment.