Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/commands/MapillaryRecordTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/commands/MapillaryRecordTest.java	(revision 31488)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/commands/MapillaryRecordTest.java	(revision 31490)
@@ -10,4 +10,8 @@
 import org.openstreetmap.josm.plugins.mapillary.MapillaryAbstractImage;
 import org.openstreetmap.josm.plugins.mapillary.MapillaryImage;
+import org.openstreetmap.josm.plugins.mapillary.history.MapillaryRecord;
+import org.openstreetmap.josm.plugins.mapillary.history.commands.CommandMove;
+import org.openstreetmap.josm.plugins.mapillary.history.commands.CommandTurn;
+import org.openstreetmap.josm.plugins.mapillary.history.commands.MapillaryCommand;
 
 /**
@@ -41,17 +45,17 @@
   @Test
   public void commandTest() {
-    MapillaryCommand cmd12 = new CommandMoveImage(
+    MapillaryCommand cmd12 = new CommandMove(
         Arrays.asList(new MapillaryAbstractImage[] { this.img1, this.img2 }),
         0.1, 0.1);
-    MapillaryCommand cmd23 = new CommandMoveImage(
+    MapillaryCommand cmd23 = new CommandMove(
         Arrays.asList(new MapillaryAbstractImage[] { this.img2, this.img3 }),
         0.1, 0.1);
-    MapillaryCommand cmd13 = new CommandMoveImage(
+    MapillaryCommand cmd13 = new CommandMove(
         Arrays.asList(new MapillaryAbstractImage[] { this.img1, this.img3 }),
         0.1, 0.1);
-    MapillaryCommand cmd1 = new CommandMoveImage(
+    MapillaryCommand cmd1 = new CommandMove(
         Arrays.asList(new MapillaryAbstractImage[] { this.img1 }),
         0.1, 0.1);
-    MapillaryCommand cmd31 = new CommandMoveImage(
+    MapillaryCommand cmd31 = new CommandMove(
         Arrays.asList(new MapillaryAbstractImage[] { this.img3, this.img1 }),
         0.2, 0.2);
@@ -98,8 +102,8 @@
   @Test
   public void commandMoveTest() {
-    CommandMoveImage cmd1 = new CommandMoveImage(
+    CommandMove cmd1 = new CommandMove(
         Arrays.asList(new MapillaryAbstractImage[] { this.img1, this.img2 }),
         0.1, 0.1);
-    CommandMoveImage cmd2 = new CommandMoveImage(
+    CommandMove cmd2 = new CommandMove(
         Arrays.asList(new MapillaryAbstractImage[] { this.img1, this.img2 }),
         0.1, 0.1);
@@ -132,8 +136,8 @@
   @Test
   public void commandTurnTest() {
-    CommandTurnImage cmd1 = new CommandTurnImage(
+    CommandTurn cmd1 = new CommandTurn(
         Arrays.asList(new MapillaryAbstractImage[] { this.img1, this.img2 }),
         0.2);
-    CommandTurnImage cmd2 = new CommandTurnImage(
+    CommandTurn cmd2 = new CommandTurn(
         Arrays.asList(new MapillaryAbstractImage[] { this.img1, this.img2 }),
         0.1);
