X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fprotocol%2Fdeserialization%2Fmultipart%2FMultipartReplyFlowStatsDeserializerTest.java;fp=openflowplugin-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fprotocol%2Fdeserialization%2Fmultipart%2FMultipartReplyFlowStatsDeserializerTest.java;h=8d40c5a2488cbeab84a6d2eed1c16cd62f564e99;hb=ac1e6e9fa1bc7ee8758b6fdf711c48bd8e86258f;hp=963a54ebd0685fafb456d2d882a61bc717ab73d6;hpb=8090d2d5efd7c31d47bd90600c6ab1a74cd52da5;p=openflowplugin.git diff --git a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/multipart/MultipartReplyFlowStatsDeserializerTest.java b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/multipart/MultipartReplyFlowStatsDeserializerTest.java index 963a54ebd0..8d40c5a248 100644 --- a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/multipart/MultipartReplyFlowStatsDeserializerTest.java +++ b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/multipart/MultipartReplyFlowStatsDeserializerTest.java @@ -29,7 +29,7 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instru import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.instruction.WriteActionsCase; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartType; -public class MultipartReplyFlowStatsDeserializerTest extends AbstractMultipartDeserializerTest{ +public class MultipartReplyFlowStatsDeserializerTest extends AbstractMultipartDeserializerTest { private static final byte PADDING_IN_FLOW_STATS_HEADER_01 = 1; private static final byte PADDING_IN_FLOW_STATS_HEADER_02 = 4; @@ -144,7 +144,8 @@ public class MultipartReplyFlowStatsDeserializerTest extends AbstractMultipartDe assertEquals(2, flowAndStatisticsMapList.getInstructions().getInstruction().size()); - final Instruction instruction = flowAndStatisticsMapList.getInstructions().getInstruction().get(0).getInstruction(); + final Instruction instruction = + flowAndStatisticsMapList.getInstructions().getInstruction().get(0).getInstruction(); assertEquals(ApplyActionsCase.class, instruction.getImplementedInterface()); final ApplyActionsCase applyActions = ApplyActionsCase.class.cast(instruction); @@ -152,7 +153,8 @@ public class MultipartReplyFlowStatsDeserializerTest extends AbstractMultipartDe assertEquals(PopPbbActionCase.class, applyActions.getApplyActions().getAction().get(0) .getAction().getImplementedInterface()); - final Instruction instruction1 = flowAndStatisticsMapList.getInstructions().getInstruction().get(1).getInstruction(); + final Instruction instruction1 = + flowAndStatisticsMapList.getInstructions().getInstruction().get(1).getInstruction(); assertEquals(WriteActionsCase.class, instruction1.getImplementedInterface()); final WriteActionsCase writeActions = WriteActionsCase.class.cast(instruction1);