Changeset 17763 in josm for trunk/test/unit


Ignore:
Timestamp:
2021-04-12T22:43:35+02:00 (4 years ago)
Author:
simon04
Message:

see #20750 - Fix OsmDataLayerTest

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/layer/OsmDataLayerTest.java

    r17715 r17763  
    291291        TestUtils.assumeWorkingJMockit();
    292292        final ExtendedDialogMocker edMocker = new ExtendedDialogMocker(
    293             Collections.singletonMap("The document contains no data.", "Cancel")
     293            Collections.singletonMap("The layer contains no data.", "Cancel")
    294294        );
    295295
     
    301301        Object[] invocationLogEntry = edMocker.getInvocationLog().get(0);
    302302        assertEquals(2, (int) invocationLogEntry[0]);
    303         assertEquals("Empty document", invocationLogEntry[2]);
     303        assertEquals("Empty layer", invocationLogEntry[2]);
    304304    }
    305305
Note: See TracChangeset for help on using the changeset viewer.