Bump upstreams for Silicon
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / RestconfImplTest.java
index c1b9e63d15edf3da5465821b25c12587fd5d445e..cc127d5e4099196c67ca1ad9b926cf2d5d226059 100644 (file)
@@ -165,10 +165,10 @@ public class RestconfImplTest {
         final DOMRpcService rpcService = mock(DOMRpcService.class);
         doReturn(Optional.of(rpcService)).when(mount).getService(DOMRpcService.class);
         doReturn(immediateFluentFuture(mock(DOMRpcResult.class))).when(rpcService)
-                .invokeRpc(any(SchemaPath.class), any(NormalizedNode.class));
+                .invokeRpc(any(QName.class), any(NormalizedNode.class));
         this.restconfImpl.invokeRpc("randomId", ctx, uriInfo);
         this.restconfImpl.invokeRpc("ietf-netconf", ctx, uriInfo);
-        verify(rpcService, times(2)).invokeRpc(any(SchemaPath.class), any());
+        verify(rpcService, times(2)).invokeRpc(any(QName.class), any());
     }
 
     /**