From 3cbd2dc396a8789f2cfcaaef9c17795e59bec31a Mon Sep 17 00:00:00 2001 From: sebdet Date: Fri, 3 Apr 2020 17:44:19 +0200 Subject: Fix pdp group info not there for legacy policy The operational policy legacy name must be changed so that clamp can get the right pdp group and subgroup Issue-ID: CLAMP-817 Signed-off-by: sebdet Change-Id: Iaede77977b8f450c10bf7df73cf2b84a74ab122a --- src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test') diff --git a/src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java b/src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java index d0669554..ac7b236e 100644 --- a/src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java +++ b/src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java @@ -42,7 +42,7 @@ import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.onap.clamp.clds.Application; -import org.onap.clamp.clds.config.LegacyOperationalPolicy; +import org.onap.clamp.clds.config.LegacyOperationalPolicyController; import org.onap.clamp.clds.exception.sdc.controller.BlueprintParserException; import org.onap.clamp.clds.exception.sdc.controller.CsarHandlerException; import org.onap.clamp.clds.exception.sdc.controller.SdcArtifactInstallerException; @@ -164,7 +164,7 @@ public class CsarInstallerItCase { @Transactional public void testPolicyModelAddedAtStartup() { assertThat(policyModelsRepository.findByPolicyModelType( - LegacyOperationalPolicy.OPERATIONAL_POLICY_LEGACY).get(0)).isNotNull(); + LegacyOperationalPolicyController.OPERATIONAL_POLICY_LEGACY).get(0)).isNotNull(); } @Test -- cgit 1.2.3-korg