summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2020-06-24 12:14:57 +0200
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-07-05 09:56:53 +0000
commit00875f083ffd56b2b861c147c5ef0fe928b77202 (patch)
tree432c067c6a38c644f02c4f85618d432bb3cfea09 /catalog-be/src/test/java/org
parent6d95c7cfb45cebed0de5e31fae5874ffaa0fb577 (diff)
Fix sonar issues
Fix sonar/checkstyle issues in sdc code Issue-ID: SDC-3158 Signed-off-by: sebdet <sebastien.determe@intl.att.com> Change-Id: I004b0f579ff1f273f39a155217972f5efcdcf5cb
Diffstat (limited to 'catalog-be/src/test/java/org')
-rw-r--r--catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/PortalRestApiCentralServiceImplTest.java (renamed from catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/PortalRestAPICentralServiceImplTest.java)6
1 files changed, 3 insertions, 3 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/PortalRestAPICentralServiceImplTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/PortalRestApiCentralServiceImplTest.java
index 964e6258df..d09ec17fd3 100644
--- a/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/PortalRestAPICentralServiceImplTest.java
+++ b/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/PortalRestApiCentralServiceImplTest.java
@@ -38,9 +38,9 @@ import java.util.HashSet;
import java.util.Map;
import java.util.Set;
-public class PortalRestAPICentralServiceImplTest {
+public class PortalRestApiCentralServiceImplTest {
- private PortalRestAPICentralServiceImpl testSubject;
+ private PortalRestApiCentralServiceImpl testSubject;
private UserBusinessLogic ubl;
private UserBusinessLogicExt uble;
@@ -48,7 +48,7 @@ public class PortalRestAPICentralServiceImplTest {
public void createTestSubject() {
ubl = Mockito.mock(UserBusinessLogic.class);
uble = Mockito.mock(UserBusinessLogicExt.class);
- testSubject = new PortalRestAPICentralServiceImpl(ubl, uble);
+ testSubject = new PortalRestApiCentralServiceImpl(ubl, uble);
}