aboutsummaryrefslogtreecommitdiffstats
path: root/models-pap/src/test/java
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2019-03-24 14:44:06 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-24 14:44:06 +0000
commit2a245ef80e39a101015efb164de53f1753fa5d47 (patch)
tree4c8a06236533aa2071af95eeac117c3a87ee5ed8 /models-pap/src/test/java
parentcc740771e3fdf02bc6e9e02f1d4f4d6cc39afcb0 (diff)
parent9854c6462dc16d53fbea809220637e320b1dc969 (diff)
Merge "Use enums from models-pdp in models-pap"
Diffstat (limited to 'models-pap/src/test/java')
-rw-r--r--models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpGroup.java2
-rw-r--r--models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpInstanceDetails.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpGroup.java b/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpGroup.java
index 3dc3c24b2..ee52d82fb 100644
--- a/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpGroup.java
+++ b/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpGroup.java
@@ -27,7 +27,7 @@ import java.util.Arrays;
import java.util.Map;
import java.util.TreeMap;
import org.junit.Test;
-import org.onap.policy.pdp.common.enums.PdpState;
+import org.onap.policy.models.pdp.enums.PdpState;
/**
* Test the copy constructor, as {@link TestModels} tests the other methods.
diff --git a/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpInstanceDetails.java b/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpInstanceDetails.java
index 9e48480f4..65fbef612 100644
--- a/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpInstanceDetails.java
+++ b/models-pap/src/test/java/org/onap/policy/models/pap/concepts/TestPdpInstanceDetails.java
@@ -24,8 +24,8 @@ import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
-import org.onap.policy.pdp.common.enums.PdpHealthStatus;
-import org.onap.policy.pdp.common.enums.PdpState;
+import org.onap.policy.models.pdp.enums.PdpHealthStatus;
+import org.onap.policy.models.pdp.enums.PdpState;
/**
* Test the copy constructor, as {@link TestModels} tests the other methods.