Ignore:
Timestamp:
2019-05-20T02:17:34+02:00 (5 years ago)
Author:
Don-vip
Message:

ignore by url, increase timeout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/preferences/map/MapPaintPreferenceTestIT.java

    r15098 r15100  
    9999
    100100        List<Throwable> errors = new ArrayList<>(style.getErrors());
    101         errors.stream().map(Throwable::getMessage).filter(MapPaintPreferenceTestIT::isIgnoredSubstring).forEach(ignoredErrors::add);
     101        errors.stream().map(Throwable::getMessage).filter(this::isIgnoredSubstring).forEach(ignoredErrors::add);
    102102        errors.removeIf(e -> ignoredErrors.contains(e.getMessage()));
    103103
    104104        List<String> warnings = new ArrayList<>(style.getWarnings());
    105         warnings.stream().filter(MapPaintPreferenceTestIT::isIgnoredSubstring).forEach(ignoredErrors::add);
     105        warnings.stream().filter(this::isIgnoredSubstring).forEach(ignoredErrors::add);
    106106        warnings.removeAll(ignoredErrors);
    107107
Note: See TracChangeset for help on using the changeset viewer.