diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-05-08 21:04:32 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2017-05-16 20:18:53 +0000 |
commit | fa622476470f31a518c46926261bd7eecd7a2778 (patch) | |
tree | fab67f3116ebfd592117b4e1cd0a973d15276983 /appc-dg/appc-dg-shared/appc-dg-netconf/src/test/java | |
parent | 85c60968f20d96f3a59eddf95d740cb0fde47825 (diff) |
Fix compilation errors in Eclipse
Change-Id: Ic5aa1977199237e006376231ae3970ece7f2cd26
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'appc-dg/appc-dg-shared/appc-dg-netconf/src/test/java')
-rw-r--r-- | appc-dg/appc-dg-shared/appc-dg-netconf/src/test/java/org/openecomp/appc/dg/netconf/impl/NetconfClientPluginImplTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/appc-dg/appc-dg-shared/appc-dg-netconf/src/test/java/org/openecomp/appc/dg/netconf/impl/NetconfClientPluginImplTest.java b/appc-dg/appc-dg-shared/appc-dg-netconf/src/test/java/org/openecomp/appc/dg/netconf/impl/NetconfClientPluginImplTest.java index 5c5aa71a1..3b4a32385 100644 --- a/appc-dg/appc-dg-shared/appc-dg-netconf/src/test/java/org/openecomp/appc/dg/netconf/impl/NetconfClientPluginImplTest.java +++ b/appc-dg/appc-dg-shared/appc-dg-netconf/src/test/java/org/openecomp/appc/dg/netconf/impl/NetconfClientPluginImplTest.java @@ -626,7 +626,7 @@ public class NetconfClientPluginImplTest { when(FrameworkUtil.getBundle(Matchers.any(Class.class))).thenReturn(bundleService); when(bundleService.getBundleContext()).thenReturn(bundleContext); when(bundleContext.getServiceReference(NetconfDataAccessService.class)).thenReturn(sref1); - when(bundleContext.getService(sref1)).thenReturn(dao); + when(bundleContext.<NetconfDataAccessService>getService(sref1)).thenReturn(dao); } @@ -652,7 +652,7 @@ public class NetconfClientPluginImplTest { when(FrameworkUtil.getBundle(Matchers.any(Class.class))).thenReturn(bundleService); when(bundleService.getBundleContext()).thenReturn(bundleContext); when(bundleContext.getServiceReference(NetconfClientFactory.class)).thenReturn(sref2); - when(bundleContext.getService(sref2)).thenReturn(clientFactory); + when(bundleContext.<NetconfClientFactory>getService(sref2)).thenReturn(clientFactory); } @@ -661,7 +661,7 @@ public class NetconfClientPluginImplTest { when(FrameworkUtil.getBundle(Matchers.any(Class.class))).thenReturn(bundleService); when(bundleService.getBundleContext()).thenReturn(bundleContext); when(bundleContext.getServiceReference(Matchers.anyString())).thenReturn(sref3); - when(bundleContext.getService(sref3)).thenReturn(clientFactory); + when(bundleContext.<NetconfClientFactory>getService(sref3)).thenReturn(clientFactory); } private void substituteMapper(boolean command) throws NoSuchFieldException, IllegalAccessException { |