diff options
author | Ofir Sonsino <os0695@intl.att.com> | 2020-01-21 15:29:57 +0200 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2020-02-13 08:52:43 +0000 |
commit | f70e2b5f66493822b512767d504ae26275cb16a2 (patch) | |
tree | 20e340e2f85c122eda06ad9494600e31afbeb483 /catalog-be/src/test/java/org | |
parent | e05eb92e3a8f80dbf8cc15239c83587fca67a79d (diff) |
Update to Portal SDK v2.6
Change-Id: I602891d783ce4c80fca6e9da3c765218d19da993
Issue-ID: SDC-2684
Signed-off-by: Ofir Sonsino <os0695@intl.att.com>
Diffstat (limited to 'catalog-be/src/test/java/org')
-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 |