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=877c9e2b4c0c728130a78e6e23898eccf06fd334;hb=276fb1df2ffee67a9ee7fb5e7c9a78d1cb62bdc8;hp=aa3bc71964637388db516a78d5b86e1134696229;hpb=cea637c7abbb8d132d8df30bc739ce041e0add8b;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 aa3bc71964..877c9e2b4c 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.ErrorType; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode; @@ -303,6 +304,6 @@ public class ProxyNetconfServiceTest { final DocumentedException de = (DocumentedException) cause; assertEquals(ErrorSeverity.WARNING, de.getErrorSeverity()); assertEquals(DocumentedException.ErrorTag.OPERATION_FAILED, de.getErrorTag()); - assertEquals(DocumentedException.ErrorType.APPLICATION, de.getErrorType()); + assertEquals(ErrorType.APPLICATION, de.getErrorType()); } } \ No newline at end of file