diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-04-03 17:44:19 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2020-04-03 18:11:29 +0200 |
commit | 3cbd2dc396a8789f2cfcaaef9c17795e59bec31a (patch) | |
tree | 3706a300c454b93e1bd826cfd7968ec613dcd403 /src/test | |
parent | c0426bafb14ca8564ef2d0c64479b0acf005e315 (diff) |
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 <sebastien.determe@intl.att.com>
Change-Id: Iaede77977b8f450c10bf7df73cf2b84a74ab122a
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java b/src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java index d06695545..ac7b236e8 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 |