ICU-22922 Integrate CLDR 47 release alpha1, part 5, updated unit test, again

This commit is contained in:
DraganBesevic 2025-01-29 16:15:42 -08:00 committed by DraganBesevic
parent 4e1d9b30a5
commit 95afc45afa

View file

@ -570,10 +570,10 @@ public class LocaleMatcherTest extends CoreTestFmwk {
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
}