Changeset 12509 in josm


Ignore:
Timestamp:
2017-07-25T18:36:05+02:00 (7 years ago)
Author:
Don-vip
Message:

ban www.freietonne.de from integration test, too many network errors !

File:
1 edited

Legend:

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

    r11793 r12509  
    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/"));
     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"));
    6161        assertFalse(sources.isEmpty());
    6262        Map<String, Collection<Throwable>> allErrors = new HashMap<>();
     
    9494                        allWarnings.put(source.url, warnings);
    9595                    }
    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 {
    9897                    allWarnings.put(source.url, Collections.singleton("MapPaintStyles.addStyle() returned null"));
    9998                }
Note: See TracChangeset for help on using the changeset viewer.