Changeset 9868 in josm for trunk/test/unit/org
- Timestamp:
- 2016-02-24T00:54:00+01:00 (9 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/gui/preferences/map
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/preferences/map/MapPaintPreferenceTestIT.java
r9669 r9868 90 90 allWarnings.put(source.url, warnings); 91 91 } 92 } else { 92 } else if (!source.url.contains("www.freietonne.de")) { 93 // ignore frequent network errors with www.freietonne.de causing too much Jenkins failures 93 94 allWarnings.put(source.url, Collections.singleton("MapPaintStyles.addStyle() returned null")); 94 95 } -
trunk/test/unit/org/openstreetmap/josm/gui/preferences/map/TaggingPresetPreferenceTestIT.java
r9669 r9868 65 65 } catch (SAXException | IOException e1) { 66 66 e.printStackTrace(); 67 allErrors.add(e1); 67 // ignore frequent network errors with www.freietonne.de causing too much Jenkins failures 68 if (!source.url.contains("www.freietonne.de")) { 69 allErrors.add(e1); 70 } 68 71 System.out.println(" => KO"); 69 72 }
Note:
See TracChangeset
for help on using the changeset viewer.