Changeset 17155 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/ant.yml
r17086 r17155 17 17 build: 18 18 runs-on: ${{ matrix.os }} 19 env: 20 LANG: en_US.UTF-8 19 21 strategy: 20 22 fail-fast: false -
trunk/test/unit/org/openstreetmap/josm/tools/JosmDecimalFormatSymbolsProviderTest.java
r16667 r17155 4 4 import static org.junit.Assert.assertEquals; 5 5 import static org.junit.Assert.assertTrue; 6 import static org.junit.Assume.assumeTrue; 6 7 7 8 import java.text.DecimalFormat; … … 29 30 @Test 30 31 public void testGroupingSeparator() { 31 if (Utils.getJavaVersion() < 9) { 32 // not supported 33 return; 34 } 32 System.out.println(Locale.getDefault()); 33 assumeTrue(Utils.getJavaVersion() >= 9); 34 35 35 assertTrue(I18n.getAvailableTranslations().count() > 10); 36 36 I18n.getAvailableTranslations().forEach(this::checkGroupingSymbol);
Note: See TracChangeset
for help on using the changeset viewer.