X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflow-protocol-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowjava%2Fprotocol%2Fimpl%2Fdeserialization%2Ffactories%2FEchoReplyMessageFactoryTest.java;h=08d42b5ed4108de9bc6ad7239c03d5309050426c;hb=48ee6cd8d5d60689ecd161a8b420f68a255a2384;hp=5338ed03a0d3d7e493eab3e6252bd1302d19ff30;hpb=fb84f7c52dd0973acbc66a4ad935a95f025a4a56;p=openflowjava.git diff --git a/openflow-protocol-impl/src/test/java/org/opendaylight/openflowjava/protocol/impl/deserialization/factories/EchoReplyMessageFactoryTest.java b/openflow-protocol-impl/src/test/java/org/opendaylight/openflowjava/protocol/impl/deserialization/factories/EchoReplyMessageFactoryTest.java index 5338ed03..08d42b5e 100644 --- a/openflow-protocol-impl/src/test/java/org/opendaylight/openflowjava/protocol/impl/deserialization/factories/EchoReplyMessageFactoryTest.java +++ b/openflow-protocol-impl/src/test/java/org/opendaylight/openflowjava/protocol/impl/deserialization/factories/EchoReplyMessageFactoryTest.java @@ -11,7 +11,7 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731 /** * @author michal.polkorab - * + * @author timotej.kubas */ public class EchoReplyMessageFactoryTest { @@ -38,7 +38,7 @@ public class EchoReplyMessageFactoryTest { EchoReplyMessageFactory.getInstance(), bb); BufferHelper.checkHeaderV13(builtByFactory); - Assert.assertArrayEquals(builtByFactory.getData(), data); + Assert.assertArrayEquals("Wrong data", data, builtByFactory.getData()); } }