Changeset 17155 in josm for trunk/test


Ignore:
Timestamp:
2020-10-11T08:47:43+02:00 (4 years ago)
Author:
simon04
Message:

see #19888, see #19370 - GitHub Actions: specify LANG=en_US.UTF-8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/tools/JosmDecimalFormatSymbolsProviderTest.java

    r16667 r17155  
    44import static org.junit.Assert.assertEquals;
    55import static org.junit.Assert.assertTrue;
     6import static org.junit.Assume.assumeTrue;
    67
    78import java.text.DecimalFormat;
     
    2930    @Test
    3031    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
    3535        assertTrue(I18n.getAvailableTranslations().count() > 10);
    3636        I18n.getAvailableTranslations().forEach(this::checkGroupingSymbol);
Note: See TracChangeset for help on using the changeset viewer.