Changeset 17155 in josm


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

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/ant.yml

    r17086 r17155  
    1717  build:
    1818    runs-on: ${{ matrix.os }}
     19    env:
     20      LANG: en_US.UTF-8
    1921    strategy:
    2022      fail-fast: false
  • 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.