Changeset 17965 in josm


Ignore:
Timestamp:
2021-07-08T22:44:37+02:00 (3 years ago)
Author:
Don-vip
Message:

see #17177 - unit test on Windows VM still failing - remove space from test folder name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/imagery/vectortile/mapbox/style/MapboxVectorStyleTest.java

    r17961 r17965  
    6969
    7070    /** The base information */
    71     private static final String BASE_STYLE = "'{'\"version\":8,\"name\":\"test style\",\"owner\":\"josm test\",\"id\":\"{0}\",{1}'}'";
     71    private static final String BASE_STYLE = "'{'\"version\":8,\"name\":\"test_style\",\"owner\":\"josm test\",\"id\":\"{0}\",{1}'}'";
    7272    /** Source 1 */
    7373    private static final String SOURCE1 = "\"source1\":{\"type\":\"vector\",\"tiles\":[\"https://example.org/{z}/{x}/{y}.mvt\"]}";
     
    177177                int finalY = y;
    178178                BufferedImage image = (BufferedImage) assertDoesNotThrow(
    179                   () -> ImageProvider.get(new File("test style", MessageFormat.format("({0},{1})", finalX, finalY)).getPath()))
     179                  () -> ImageProvider.get(new File("test_style", MessageFormat.format("({0},{1})", finalX, finalY)).getPath()))
    180180                  .getImage();
    181181                assertEquals(3 * hiDpiScalar, image.getWidth(null));
Note: See TracChangeset for help on using the changeset viewer.