diff options
Diffstat (limited to 'catalog-be/src/test')
-rw-r--r-- | catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/EcompIntImplTest.java | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/EcompIntImplTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/EcompIntImplTest.java index c32768b85b..d94bdeffc0 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/EcompIntImplTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/EcompIntImplTest.java @@ -87,17 +87,6 @@ public class EcompIntImplTest { result = testSubject.getAvailableRoles("Mock"); } - /*@Test - public void testPushUserRole() throws Exception { - EcompIntImpl testSubject; - String loginId = ""; - List<EcompRole> roles = null; - - // test 1 - testSubject = createTestSubject(); - roles = null; - testSubject.pushUserRole(loginId, roles); - }*/ @Test(expected= PortalAPIException.class) public void testGetUserRoles() throws Exception { @@ -117,7 +106,7 @@ public class EcompIntImplTest { HttpServletRequest httpServletRequestImpl = Mockito.mock(HttpServletRequest.class); // default test testSubject = createTestSubject(); - result = testSubject.isAppAuthenticated(httpServletRequestImpl); + result = testSubject.isAppAuthenticated(httpServletRequestImpl, null); } @Test |