Changeset 14994 in josm for trunk


Ignore:
Timestamp:
2019-04-16T02:42:53+02:00 (5 years ago)
Author:
Don-vip
Message:

see #17559 - update unit test

File:
1 edited

Legend:

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

    r14313 r14994  
    167167        final String old = System.getProperty("josm.plugins");
    168168        try {
    169             System.setProperty("josm.plugins", "buildings_tools,plastic_laf");
     169            System.setProperty("josm.plugins", "buildings_tools,utilsplugin2");
    170170            SplashProgressMonitor monitor = new SplashProgressMonitor("foo", e -> {
    171171                // Do nothing
     
    175175                PluginHandlerTestIT.downloadPlugins(Arrays.asList(
    176176                        newPluginInformation("buildings_tools"),
    177                         newPluginInformation("plastic_laf")));
     177                        newPluginInformation("utilsplugin2")));
    178178                plugins = MainApplication.updateAndLoadEarlyPlugins(null, monitor);
    179179            }
    180180            assertEquals(2, plugins.size());
    181             assertNotNull(PluginHandler.getPlugin("plastic_laf"));
     181            assertNotNull(PluginHandler.getPlugin("utilsplugin2"));
    182182            assertNull(PluginHandler.getPlugin("buildings_tools"));
    183183            MainApplication.loadLatePlugins(null, monitor, plugins);
Note: See TracChangeset for help on using the changeset viewer.