aboutsummaryrefslogtreecommitdiffstats
path: root/ccsdk-app-common/src/test/java/org
diff options
context:
space:
mode:
Diffstat (limited to 'ccsdk-app-common/src/test/java/org')
-rw-r--r--ccsdk-app-common/src/test/java/org/onap/ccsdk/dashboard/rest/CloudifyRestClientImplTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ccsdk-app-common/src/test/java/org/onap/ccsdk/dashboard/rest/CloudifyRestClientImplTest.java b/ccsdk-app-common/src/test/java/org/onap/ccsdk/dashboard/rest/CloudifyRestClientImplTest.java
index a6f5038..c117f23 100644
--- a/ccsdk-app-common/src/test/java/org/onap/ccsdk/dashboard/rest/CloudifyRestClientImplTest.java
+++ b/ccsdk-app-common/src/test/java/org/onap/ccsdk/dashboard/rest/CloudifyRestClientImplTest.java
@@ -772,7 +772,7 @@ public class CloudifyRestClientImplTest extends MockitoTestSuite {
ResponseEntity<CloudifyPluginList> response =
new ResponseEntity<CloudifyPluginList>(cfyPluginList, HttpStatus.OK);
- when(mockRest.exchange(anyString(), eq(HttpMethod.GET), isNull(),
+ when(mockRest.exchange(anyString(), eq(HttpMethod.GET), any(HttpEntity.class),
eq(new ParameterizedTypeReference<CloudifyPluginList>() {}))).thenReturn(response);
CloudifyPluginList actuals = subject.getPlugins();