Changeset 14514 in josm for trunk/test


Ignore:
Timestamp:
2018-12-05T23:03:11+01:00 (5 years ago)
Author:
Don-vip
Message:

see #16073 - messed up parameters order

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreferenceTestIT.java

    r14513 r14514  
    124124            checkTileUrl(info, tileSource, center, info.getMinZoom());
    125125            // checking max zoom for real is complex, see https://josm.openstreetmap.de/ticket/16073#comment:27
    126             checkTileUrl(info, tileSource, center, Utils.clamp(info.getMinZoom() + 1, 12, info.getMaxZoom()));
     126            checkTileUrl(info, tileSource, center, Utils.clamp(12, info.getMinZoom() + 1, info.getMaxZoom()));
    127127        } catch (IOException | WMTSGetCapabilitiesException | IllegalArgumentException e) {
    128128            addError(info, e.toString());
Note: See TracChangeset for help on using the changeset viewer.