From 221e242e74ffc3da7d3efc78df3f2d6def0f4c38 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Mon, 1 Apr 2019 18:29:16 -0400 Subject: Remove pdpType from PdpUpdate The pdpType field is redundant; it has the same value as the pdpSubgroup field. Change-Id: Id5cd0c726ffcf73aa82d35eb8cdbf1d7e3c2abc8 Issue-ID: POLICY-1542 Signed-off-by: Jim Hahn --- .../test/java/org/onap/policy/models/pdp/concepts/TestPdpUpdate.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'models-pdp/src/test/java/org') diff --git a/models-pdp/src/test/java/org/onap/policy/models/pdp/concepts/TestPdpUpdate.java b/models-pdp/src/test/java/org/onap/policy/models/pdp/concepts/TestPdpUpdate.java index 5f8819b48..3d4359a7a 100644 --- a/models-pdp/src/test/java/org/onap/policy/models/pdp/concepts/TestPdpUpdate.java +++ b/models-pdp/src/test/java/org/onap/policy/models/pdp/concepts/TestPdpUpdate.java @@ -42,7 +42,7 @@ public class TestPdpUpdate { PdpUpdate orig = new PdpUpdate(); // verify with null values - assertEquals("PdpUpdate(name=null, pdpType=null, description=null, pdpGroup=null, " + assertEquals("PdpUpdate(name=null, description=null, pdpGroup=null, " + "pdpSubgroup=null, policies=null)", new PdpUpdate(orig).toString()); // verify with all values @@ -50,7 +50,6 @@ public class TestPdpUpdate { orig.setName("my-name"); orig.setPdpGroup("my-group"); orig.setPdpSubgroup("my-subgroup"); - orig.setPdpType("my-type"); ToscaPolicy policy1 = new ToscaPolicy(); policy1.setName("policy-a"); @@ -65,7 +64,7 @@ public class TestPdpUpdate { PdpUpdate other = new PdpUpdate(orig); - assertEquals("PdpUpdate(name=my-name, pdpType=my-type, description=my-description, " + assertEquals("PdpUpdate(name=my-name, description=my-description, " + "pdpGroup=my-group, pdpSubgroup=my-subgroup, policies=[" + "ToscaPolicy(super=ToscaEntity(name=policy-a, version=1.2.3, derivedFrom=null, " + "metadata=null, description=null), type=null, typeVersion=null, properties=null), " -- cgit 1.2.3-korg