From 8878a06f6023c4fc2fc03656c9e2012bde80bb70 Mon Sep 17 00:00:00 2001 From: Ittay Stern Date: Mon, 9 Dec 2019 08:30:33 +0200 Subject: Extract getExistingCounterMap from AAITreeConverter to ModelUtil Issue-ID: VID-724 Change-Id: I16305bc2f7c0f208d03da8e0255fad0ea16fb28d Signed-off-by: Ittay Stern --- .../src/test/java/org/onap/vid/services/AAIServiceTreeTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vid-app-common/src/test/java/org/onap/vid/services/AAIServiceTreeTest.java') diff --git a/vid-app-common/src/test/java/org/onap/vid/services/AAIServiceTreeTest.java b/vid-app-common/src/test/java/org/onap/vid/services/AAIServiceTreeTest.java index 7457e480e..be195c89b 100644 --- a/vid-app-common/src/test/java/org/onap/vid/services/AAIServiceTreeTest.java +++ b/vid-app-common/src/test/java/org/onap/vid/services/AAIServiceTreeTest.java @@ -51,6 +51,7 @@ import org.onap.vid.aai.AaiClient; import org.onap.vid.aai.util.AAITreeConverter; import org.onap.vid.asdc.parser.ServiceModelInflator; import org.onap.vid.asdc.parser.ServiceModelInflator.Names; +import org.onap.vid.model.ModelUtil; import org.onap.vid.model.aaiTree.AAITreeNode; import org.onap.vid.model.aaiTree.NodeType; import org.onap.vid.mso.model.CloudConfiguration; @@ -201,7 +202,7 @@ public class AAIServiceTreeTest { AAIServiceTree aaiServiceTree = new AAIServiceTree( aaiClientMock, new AAITreeNodeBuilder(aaiClientMock, new Logging()), - new AAITreeConverter(), + new AAITreeConverter(new ModelUtil()), null, null, executorService -- cgit 1.2.3-korg