Changeset 13779 in josm for trunk/test


Ignore:
Timestamp:
2018-05-16T23:03:47+02:00 (6 years ago)
Author:
wiktorn
Message:

Checkstyle fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJobTest.java

    r13778 r13779  
    372372                .willReturn(WireMock.aResponse()
    373373                        .withHeader("Expires", TestUtils.getHTTPDate(testStart + (JCSCachedTileLoaderJob.DEFAULT_EXPIRE_TIME / 10)))
    374                         .withHeader("Cache-Control", "max-age=" + TimeUnit.MILLISECONDS.toSeconds((JCSCachedTileLoaderJob.DEFAULT_EXPIRE_TIME / 2)))
     374                        .withHeader("Cache-Control", "max-age=" +
     375                                TimeUnit.MILLISECONDS.toSeconds((JCSCachedTileLoaderJob.DEFAULT_EXPIRE_TIME / 2)))
    375376                        .withBody("mock entry")
    376377                        )
     
    380381                .willReturn(WireMock.aResponse()
    381382                        .withHeader("Expires", TestUtils.getHTTPDate(testStart + (JCSCachedTileLoaderJob.DEFAULT_EXPIRE_TIME / 10)))
    382                         .withHeader("Cache-Control", "max-age=" + TimeUnit.MILLISECONDS.toSeconds((JCSCachedTileLoaderJob.DEFAULT_EXPIRE_TIME / 2)))
     383                        .withHeader("Cache-Control", "max-age=" +
     384                                TimeUnit.MILLISECONDS.toSeconds((JCSCachedTileLoaderJob.DEFAULT_EXPIRE_TIME / 2)))
    383385                        )
    384386                );
Note: See TracChangeset for help on using the changeset viewer.