Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
castmart committed Dec 12, 2023
1 parent 520b562 commit d65af08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void testJCountryReadTranslations() {
@Test
void testJCountryReadsTranslations() {
// More than 50% of work population is covered with these languages.
ArrayList<String> languages = new ArrayList<>(Arrays.asList("zh_CN", "zh_HK", "zh_TW", "es", "de", "bn", "bn_IN", "pt", "pt_BR", "ru", "ja", "hi", "ar", "pa", "fr", "tr", "ko"));
ArrayList<String> languages = new ArrayList<>(Arrays.asList("es", "de", "bn", "pt", "ru", "ja", "hi", "ar", "pa", "fr", "tr", "ko"));
CountryDB countryDB = new CountryDBImpl(true);

languages.forEach( it -> {
Expand Down Expand Up @@ -113,7 +113,7 @@ void testJCountryLanguagesDBReadTranslations() {
@Test
void testJCountryLanguagesReadsTranslations() {
// More than 50% of work population is covered with these languages.
ArrayList<String> languages = new ArrayList<>(Arrays.asList("zh_CN", "zh_HK", "zh_TW", "es", "de", "bn", "pt", "pt_BR", "ru", "ja", "hi", "ar", "pa", "fr", "tr", "ko"));
ArrayList<String> languages = new ArrayList<>(Arrays.asList("es", "de", "bn", "pt", "ru", "ja", "hi", "ar", "pa", "fr", "tr", "ko"));
LanguageDB languageDB = new LanguageDBImpl(true);

languages.forEach( it -> {
Expand Down

0 comments on commit d65af08

Please sign in to comment.