Skip to content

v0.2.54..v0.2.55 changeset ClipDatasetCommandTest.java

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-services/src/test/java/hoot/services/controllers/clipping/ClipDatasetCommandTest.java b/hoot-services/src/test/java/hoot/services/controllers/clipping/ClipDatasetCommandTest.java
index a6b24bb..1553aa5 100644
--- a/hoot-services/src/test/java/hoot/services/controllers/clipping/ClipDatasetCommandTest.java
+++ b/hoot-services/src/test/java/hoot/services/controllers/clipping/ClipDatasetCommandTest.java
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2015, 2016, 2017, 2018 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 package hoot.services.controllers.clipping;
 
@@ -72,7 +72,7 @@ public class ClipDatasetCommandTest {
         assertNotNull(clipDatasetCommand.getWorkDir());
         assertNotNull(clipDatasetCommand.getCommand());
 
-        String expectedCommand = "hoot crop --${DEBUG_LEVEL} ${HOOT_OPTIONS} ${INPUT} ${OUTPUT} ${BOUNDS}";
+        String expectedCommand = "hoot.bin crop --${DEBUG_LEVEL} ${HOOT_OPTIONS} ${INPUT} ${OUTPUT} ${BOUNDS}";
         assertEquals(expectedCommand, clipDatasetCommand.getCommand());
 
         assertTrue(clipDatasetCommand.getSubstitutionMap().containsKey("DEBUG_LEVEL"));
@@ -90,4 +90,4 @@ public class ClipDatasetCommandTest {
         assertTrue(clipDatasetCommand.getSubstitutionMap().containsKey("BOUNDS"));
         assertEquals(bounds, clipDatasetCommand.getSubstitutionMap().get("BOUNDS"));
     }
-}
\ No newline at end of file
+}
Clone this wiki locally