Changeset 12509 in josm
- Timestamp:
- 2017-07-25T18:36:05+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/preferences/map/MapPaintPreferenceTestIT.java
r11793 r12509 57 57 Collection<ExtendedSourceEntry> sources = new MapPaintPreference.MapPaintSourceEditor() 58 58 .loadAndGetAvailableSources(); 59 // Drop everything from yopaseopor , too many errors60 sources.removeIf(x -> x.url.contains("yopaseopor/") );59 // Drop everything from yopaseopor and www.freietonne.de, too many errors 60 sources.removeIf(x -> x.url.contains("yopaseopor/") || x.url.contains("www.freietonne.de")); 61 61 assertFalse(sources.isEmpty()); 62 62 Map<String, Collection<Throwable>> allErrors = new HashMap<>(); … … 94 94 allWarnings.put(source.url, warnings); 95 95 } 96 } else if (!source.url.contains("www.freietonne.de")) { 97 // ignore frequent network errors with www.freietonne.de causing too much Jenkins failures 96 } else { 98 97 allWarnings.put(source.url, Collections.singleton("MapPaintStyles.addStyle() returned null")); 99 98 }
Note:
See TracChangeset
for help on using the changeset viewer.