Changeset 9815 in josm
- Timestamp:
- 2016-02-17T19:44:36+01:00 (9 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerTestIT.java
r9666 r9815 54 54 assertFalse(info.getClass().getName().isEmpty()); 55 55 56 // Filter deprecated and unmaintained ones 57 List<String> uncooperatingPlugins = Arrays.asList("ebdirigo" );56 // Filter deprecated and unmaintained ones, or those not responsive enough to match our continuous integration needs 57 List<String> uncooperatingPlugins = Arrays.asList("ebdirigo", "scoutsigns"); 58 58 Set<String> deprecatedPlugins = PluginHandler.getDeprecatedAndUnmaintainedPlugins(); 59 59 for (Iterator<PluginInformation> it = plugins.iterator(); it.hasNext();) { -
trunk/test/unit/org/openstreetmap/josm/tools/OverpassTurboQueryWizardTest.java
r9704 r9815 5 5 6 6 import org.junit.BeforeClass; 7 import org.junit.Ignore; 7 8 import org.junit.Test; 8 9 import org.openstreetmap.josm.JOSMFixture; … … 26 27 */ 27 28 @Test 29 @Ignore("see #12514 - Test does not work with Java 7, to enable after Java 8 migration if not fixed in the meantime") 28 30 public void testKeyValue() { 29 31 final String query = OverpassTurboQueryWizard.getInstance().constructQuery("amenity=drinking_water");
Note:
See TracChangeset
for help on using the changeset viewer.