Index: trunk/test/unit/org/openstreetmap/josm/gui/MainApplicationTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/gui/MainApplicationTest.java	(revision 14311)
+++ trunk/test/unit/org/openstreetmap/josm/gui/MainApplicationTest.java	(revision 14313)
@@ -30,5 +30,6 @@
 import org.junit.Test;
 import org.openstreetmap.josm.TestUtils;
-import org.openstreetmap.josm.actions.AboutAction;
+import org.openstreetmap.josm.actions.JosmAction;
+import org.openstreetmap.josm.actions.OpenLocationAction;
 import org.openstreetmap.josm.data.Version;
 import org.openstreetmap.josm.data.osm.DataSet;
@@ -294,6 +295,6 @@
         assertNotNull(noAction.getKeyStroke());
         assertNull(MainApplication.getRegisteredActionShortcut(noAction));
-        AboutAction about = new AboutAction();
-        assertEquals(about, MainApplication.getRegisteredActionShortcut(about.getShortcut()));
+        JosmAction action = new OpenLocationAction();
+        assertEquals(action, MainApplication.getRegisteredActionShortcut(action.getShortcut()));
     }
 
