From c0aee566a0cd35518a5de5aab38a3b5ea9f5134c Mon Sep 17 00:00:00 2001 From: "Mark H. Wood" Date: Wed, 16 Mar 2022 12:08:10 -0400 Subject: [PATCH] Oops, fix the tests to understand the new options. #3312 --- .../src/test/java/org/dspace/app/util/ConfigurationIT.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dspace-api/src/test/java/org/dspace/app/util/ConfigurationIT.java b/dspace-api/src/test/java/org/dspace/app/util/ConfigurationIT.java index 8f18c9754e..20e48f84de 100644 --- a/dspace-api/src/test/java/org/dspace/app/util/ConfigurationIT.java +++ b/dspace-api/src/test/java/org/dspace/app/util/ConfigurationIT.java @@ -94,7 +94,6 @@ public class ConfigurationIT public void testMainAllSingle() { String[] argv; argv = new String[] { - "--all", "--property", SINGLE_PROPERTY }; expectedSystemExit.expectSystemExitWithStatus(0); @@ -123,7 +122,6 @@ public class ConfigurationIT public void testMainAllArray() { String[] argv; argv = new String[] { - "--all", "--property", ARRAY_PROPERTY }; expectedSystemExit.expectSystemExitWithStatus(0); @@ -153,7 +151,6 @@ public class ConfigurationIT public void testMainAllSubstitution() { String[] argv; argv = new String[] { - "--all", "--property", PLACEHOLDER_PROPERTY }; expectedSystemExit.expectSystemExitWithStatus(0); @@ -184,7 +181,6 @@ public class ConfigurationIT // Can it handle a raw property (with substitution placeholders)? String[] argv; argv = new String[] { - "--all", "--property", PLACEHOLDER_PROPERTY, "--raw" }; @@ -215,7 +211,6 @@ public class ConfigurationIT // Can it handle an undefined property? String[] argv; argv = new String[] { - "--all", "--property", MISSING_PROPERTY }; expectedSystemExit.expectSystemExitWithStatus(0);