summaryrefslogtreecommitdiffstats
path: root/src/test/java
diff options
context:
space:
mode:
authorChristophe Closset <christophe.closset@intl.att.com>2019-05-09 10:08:57 +0000
committerGerrit Code Review <gerrit@onap.org>2019-05-09 10:08:57 +0000
commitd44558eaee3cff15f9798ccc14b1642636b77cb0 (patch)
tree5d9cbb5e42eae593f82a98987916cf58603c975c /src/test/java
parent5ce610d384f5f9bc7ee3dffe07e1b583bb71a96d (diff)
parent4545e770dd5ab7cab80ea115ed326e60a944cbc4 (diff)
Merge "Fix model type searching"
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/org/onap/clamp/clds/sdc/controller/installer/BlueprintParserTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/org/onap/clamp/clds/sdc/controller/installer/BlueprintParserTest.java b/src/test/java/org/onap/clamp/clds/sdc/controller/installer/BlueprintParserTest.java
index 7a1f9f0ac..dec639770 100644
--- a/src/test/java/org/onap/clamp/clds/sdc/controller/installer/BlueprintParserTest.java
+++ b/src/test/java/org/onap/clamp/clds/sdc/controller/installer/BlueprintParserTest.java
@@ -144,7 +144,7 @@ public class BlueprintParserTest {
MicroService expected = new MicroService(SECOND_APPP, MODEL_TYPE1, FIRST_APPP, "");
Entry<String, JsonElement> entry = jsonObject.entrySet().iterator().next();
- MicroService actual = new BlueprintParser().getNodeRepresentation(entry, jsonObject);
+ MicroService actual = new BlueprintParser().getNodeRepresentation(entry, jsonObject, null);
Assert.assertEquals(expected, actual);
}