Fix compilation errors in Eclipse
[appc.git] / appc-dispatcher / appc-request-handler / appc-request-handler-core / src / test / java / org / openecomp / appc / requesthandler / TestRequestValidator.java
index f4d7037..16caf58 100644 (file)
@@ -119,7 +119,7 @@ public class TestRequestValidator {
         PowerMockito.when(FrameworkUtil.getBundle(AAIService.class)).thenReturn(bundleService);
         PowerMockito.when(bundleService.getBundleContext()).thenReturn(bundleContext);
         PowerMockito.when(bundleContext.getServiceReference(AAIService.class.getName())).thenReturn(sref);
-        PowerMockito.when(bundleContext.getService(sref)).thenReturn(aaiService);
+        PowerMockito.when(bundleContext.<AAIService>getService(sref)).thenReturn(aaiService);
         PowerMockito.when(aaiService.query(anyString(),anyBoolean(),anyString(),anyString(),anyString(),anyString(),(SvcLogicContext)anyObject())).thenAnswer(new Answer<SvcLogicResource.QueryStatus>() {
             @Override
             public SvcLogicResource.QueryStatus answer(InvocationOnMock invocation) throws Throwable {