Adjust to yangtools-2.0.0 changes
[mdsal.git] / binding / yang-binding / src / test / java / org / opendaylight / yangtools / yang / binding / util / QNameRpcServiceInvokerTest.java
index 7a004ec85c4cf0d0b9810df4e08f3e351b81a60f..d7047df9be590e6f98e69804c65699fc0e23c577 100644 (file)
@@ -26,7 +26,7 @@ public class QNameRpcServiceInvokerTest {
     @Test(expected = IllegalArgumentException.class)
     public void qnameToKeyTest() throws Exception {
         final RpcService rpcService = mock(RpcService.class);
-        QNameRpcServiceInvoker.instanceFor(ImmutableMap.of()).invokeRpc(rpcService, QName.create("test"), null);
+        QNameRpcServiceInvoker.instanceFor(ImmutableMap.of()).invokeRpc(rpcService, QName.create("", "test"), null);
         fail("Expected exception: constructed with empty map");
     }
 }
\ No newline at end of file