X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=netconf%2Fnetconf-topology-singleton%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Ftopology%2Fsingleton%2Fimpl%2Fnetconf%2FProxyNetconfServiceTest.java;h=33fe1a5f47e8d8118eedcae5cc2965629a34d206;hb=45ef57fef0b7a0951ac3ed4b0a249225071fcd2c;hp=877c9e2b4c0c728130a78e6e23898eccf06fd334;hpb=0cc245d37ebbe6d9d5933bcb0034a1ed9c5b093a;p=netconf.git diff --git a/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/netconf/ProxyNetconfServiceTest.java b/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/netconf/ProxyNetconfServiceTest.java index 877c9e2b4c..33fe1a5f47 100644 --- a/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/netconf/ProxyNetconfServiceTest.java +++ b/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/netconf/ProxyNetconfServiceTest.java @@ -47,6 +47,7 @@ import org.opendaylight.netconf.topology.singleton.messages.netconf.UnlockReques import org.opendaylight.netconf.topology.singleton.messages.rpc.InvokeRpcMessageReply; import org.opendaylight.netconf.topology.singleton.messages.transactions.EmptyReadResponse; import org.opendaylight.yangtools.yang.common.ErrorSeverity; +import org.opendaylight.yangtools.yang.common.ErrorTag; import org.opendaylight.yangtools.yang.common.ErrorType; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; @@ -303,7 +304,7 @@ public class ProxyNetconfServiceTest { assertTrue("Unexpected cause " + cause, cause instanceof DocumentedException); final DocumentedException de = (DocumentedException) cause; assertEquals(ErrorSeverity.WARNING, de.getErrorSeverity()); - assertEquals(DocumentedException.ErrorTag.OPERATION_FAILED, de.getErrorTag()); + assertEquals(ErrorTag.OPERATION_FAILED, de.getErrorTag()); assertEquals(ErrorType.APPLICATION, de.getErrorType()); } } \ No newline at end of file