From 7fc8fd594dddbd079fcb8419f658e08620eb38c7 Mon Sep 17 00:00:00 2001 From: xg353y Date: Fri, 15 Mar 2019 15:06:25 +0100 Subject: Rework UI Fix bugs due to the data model change Issue-ID: CLAMP-318 Change-Id: If3750505a5f496caae61c01c2179e058e79eba52 Signed-off-by: xg353y --- src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test') diff --git a/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java b/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java index d247344a..4011a786 100644 --- a/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java +++ b/src/test/java/org/onap/clamp/loop/LoopServiceTestItCase.java @@ -149,7 +149,7 @@ public class LoopServiceTestItCase { newJsonRepresentation, null); //when - firstMicroServicePolicy.setJsonRepresentation(newJsonRepresentation); + firstMicroServicePolicy.setProperties(JsonUtils.GSON.fromJson("{\"name1\":\"value1\"}", JsonObject.class)); Loop actualLoop = loopService.updateAndSaveMicroservicePolicies(EXAMPLE_LOOP_NAME, Lists.newArrayList(firstMicroServicePolicy, secondMicroServicePolicy)); -- cgit 1.2.3-korg