Changeset 9868 in josm for trunk/test/unit/org/openstreetmap


Ignore:
Timestamp:
2016-02-24T00:54:00+01:00 (8 years ago)
Author:
Don-vip
Message:

ignore frequent network errors with www.freietonne.de causing too much Jenkins failures

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  
    9090                        allWarnings.put(source.url, warnings);
    9191                    }
    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
    9394                    allWarnings.put(source.url, Collections.singleton("MapPaintStyles.addStyle() returned null"));
    9495                }
  • trunk/test/unit/org/openstreetmap/josm/gui/preferences/map/TaggingPresetPreferenceTestIT.java

    r9669 r9868  
    6565                } catch (SAXException | IOException e1) {
    6666                    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                    }
    6871                    System.out.println(" => KO");
    6972                }
Note: See TracChangeset for help on using the changeset viewer.