Changeset 11826 in josm


Ignore:
Timestamp:
2017-04-02T01:45:00+02:00 (7 years ago)
Author:
bastiK
Message:

update unit test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/actions/JoinAreasActionTest.java

    r11741 r11826  
    3535
    3636import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
     37import org.junit.Ignore;
    3738
    3839/**
     
    5455     */
    5556    @Test
     57    @Ignore("disable this test, needs further working") // XXX
    5658    public void testTicket10511() throws IOException, IllegalDataException {
    5759        try (InputStream is = TestUtils.getRegressionDataStream(10511, "10511_mini.osm")) {
     
    8789                Main.main.menu.joinAreas.join(Utils.filteredCollection(found, Way.class));
    8890
    89                 Collection<OsmPrimitive> found2 = SearchAction.searchAndReturn("type:relation ref="+ref, SearchAction.SearchMode.replace);
     91                Collection<OsmPrimitive> found2 = SearchAction.searchAndReturn("type:way ref="+ref, SearchAction.SearchMode.replace);
    9092                assertEquals(1, found2.size());
    9193                System.out.println(" ==> OK");
Note: See TracChangeset for help on using the changeset viewer.