Changeset 11826 in josm for trunk/test
- Timestamp:
- 2017-04-02T01:45:00+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/actions/JoinAreasActionTest.java
r11741 r11826 35 35 36 36 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 37 import org.junit.Ignore; 37 38 38 39 /** … … 54 55 */ 55 56 @Test 57 @Ignore("disable this test, needs further working") // XXX 56 58 public void testTicket10511() throws IOException, IllegalDataException { 57 59 try (InputStream is = TestUtils.getRegressionDataStream(10511, "10511_mini.osm")) { … … 87 89 Main.main.menu.joinAreas.join(Utils.filteredCollection(found, Way.class)); 88 90 89 Collection<OsmPrimitive> found2 = SearchAction.searchAndReturn("type: relationref="+ref, SearchAction.SearchMode.replace);91 Collection<OsmPrimitive> found2 = SearchAction.searchAndReturn("type:way ref="+ref, SearchAction.SearchMode.replace); 90 92 assertEquals(1, found2.size()); 91 93 System.out.println(" ==> OK");
Note:
See TracChangeset
for help on using the changeset viewer.