Upgrade SDC from Titan to Janus Graph
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / dao / janusgraph / JanusGraphUtilsTest.java
@@ -1,21 +1,21 @@
-package org.openecomp.sdc.be.dao.titan;
+package org.openecomp.sdc.be.dao.janusgraph;
 
-import com.thinkaurelius.titan.graphdb.query.TitanPredicate;
+import org.janusgraph.graphdb.query.JanusGraphPredicate;
 import org.apache.tinkerpop.gremlin.structure.T;
 import org.junit.Test;
 
 import java.util.Collection;
 import java.util.Map;
 import java.util.Map.Entry;
-public class TitanUtilsTest {
+public class JanusGraphUtilsTest {
 
        @Test
        public void testBuildNotInPredicate() throws Exception {
                String propKey = "";
                Collection<T> notInCollection = null;
-               Map<String, Entry<TitanPredicate, Object>> result;
+               Map<String, Entry<JanusGraphPredicate, Object>> result;
 
                // default test
-               result = TitanUtils.buildNotInPredicate(propKey, notInCollection);
+               result = JanusGraphUtils.buildNotInPredicate(propKey, notInCollection);
        }
 }
\ No newline at end of file