diff options
author | Gervais-Martial Ngueko <gervais-martial.ngueko@intl.att.com> | 2020-04-03 16:25:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-04-03 16:25:19 +0000 |
commit | cd46825cbd3a4ee82442ecc2873edd44cf4f4ccc (patch) | |
tree | a1e4948d9c80ef5d861607f69020459caa7dff74 /src/test | |
parent | 2cfbd6edca58330fda80ca9460fec0d66a3791a0 (diff) | |
parent | 3cbd2dc396a8789f2cfcaaef9c17795e59bec31a (diff) |
Merge "Fix pdp group info not there for legacy policy"
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 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 |