aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2020-02-18 19:04:42 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-18 19:04:42 +0000
commit9d924537e89a61a85fb7722ec7b5e7208df38937 (patch)
tree019ae866b716f421510a4d1d696a4563c2709d1a /src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java
parent46b5a59db7edba526548df38ea058339c2389dbd (diff)
parent93722f9202d0f487dd1aceb2f40e88dd8f5f128c (diff)
Merge "Get keyStorePassword from file"
Diffstat (limited to 'src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java')
-rw-r--r--src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java b/src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java
index 8011452..aacbd25 100644
--- a/src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java
+++ b/src/test/java/org/onap/dcae/inventory/InventoryApplicationTest.java
@@ -59,13 +59,7 @@ public class InventoryApplicationTest {
String userArgs[] = {"server"};
assertEquals(InventoryApplication.processArgs(userArgs).length, 2);
- userArgs = new String[] {"server some-yaml.yaml"};
- assertArrayEquals(InventoryApplication.processArgs(userArgs), userArgs);
-
- userArgs = new String[] {"foo"};
- assertArrayEquals(InventoryApplication.processArgs(userArgs), userArgs);
-
- userArgs = new String[] {"foo bar"};
+ userArgs = new String[] {"server", "some-junit-yaml.yaml"};
assertArrayEquals(InventoryApplication.processArgs(userArgs), userArgs);
}