Changeset 11793 in josm


Ignore:
Timestamp:
2017-03-30T02:41:41+02:00 (7 years ago)
Author:
Don-vip
Message:

update blacklist in style integration test

File:
1 edited

Legend:

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

    r11021 r11793  
    5757        Collection<ExtendedSourceEntry> sources = new MapPaintPreference.MapPaintSourceEditor()
    5858                .loadAndGetAvailableSources();
     59        // Drop everything from yopaseopor, too many errors
     60        sources.removeIf(x -> x.url.contains("yopaseopor/"));
    5961        assertFalse(sources.isEmpty());
    6062        Map<String, Collection<Throwable>> allErrors = new HashMap<>();
     
    8991                        allErrors.put(source.url, errors);
    9092                    }
    91                     if (!warnings.isEmpty() && !source.url.contains("yopaseopor/")) {
    92                         // ignore https://github.com/yopaseopor/traffic_signs_style_JOSM because of far too frequent missing icons errors
     93                    if (!warnings.isEmpty()) {
    9394                        allWarnings.put(source.url, warnings);
    9495                    }
Note: See TracChangeset for help on using the changeset viewer.