From ddc73b563fcd2b3e47b5d0f54139f20ed3cdcba1 Mon Sep 17 00:00:00 2001 From: abatos Date: Tue, 22 Aug 2017 14:23:21 -0400 Subject: Split out Titan specific dependencies from core Remove the Titan specific references within the gizmo core and prepare for dependency on new champ core library. Change-Id: I29a4e7b6528e8357715b095d8db5456cd01eb636 Issue-ID: AAI-21 Signed-off-by: abatos --- src/test/java/org/openecomp/crud/dao/champ/ChampDaoTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test') diff --git a/src/test/java/org/openecomp/crud/dao/champ/ChampDaoTest.java b/src/test/java/org/openecomp/crud/dao/champ/ChampDaoTest.java index b11e274..a895066 100644 --- a/src/test/java/org/openecomp/crud/dao/champ/ChampDaoTest.java +++ b/src/test/java/org/openecomp/crud/dao/champ/ChampDaoTest.java @@ -35,10 +35,10 @@ public class ChampDaoTest { // Create an instance of the Champ DAO, backed by the Champ library's in-memory back end // for testing purposes. - Properties champDaoProperties = new Properties(); + Map champDaoProperties = new HashMap(); champDaoProperties.put(ChampDao.CONFIG_STORAGE_BACKEND, "in-memory"); champDaoProperties.put(ChampDao.CONFIG_GRAPH_NAME, GRAPH_NAME); - champDao = new ChampDao(champDaoProperties); + champDao = new ChampDao(new InMemoryChampGraphImpl.Builder().properties(champDaoProperties).build()); } -- cgit 1.2.3-korg