Fix most bgp-parser-impl checkstyle
[bgpcep.git] / bgp / parser-impl / src / test / java / org / opendaylight / protocol / bgp / parser / impl / message / update / extended / communities / LinkBandwidthECTest.java
index 776492a6e8b3c7551d8482b7186c27bd53cd86a4..232847de0c657ba7cbc2e6c7ff7ad5df086c96d3 100644 (file)
@@ -39,7 +39,8 @@ public class LinkBandwidthECTest {
     public void parserTest() throws BGPParsingException, BGPDocumentedException {
         final ByteBuf buff = Unpooled.buffer(COMMUNITY_VALUE_SIZE);
 
-        final LinkBandwidthCase expected = new LinkBandwidthCaseBuilder().setLinkBandwidthExtendedCommunity(new LinkBandwidthExtendedCommunityBuilder()
+        final LinkBandwidthCase expected = new LinkBandwidthCaseBuilder().setLinkBandwidthExtendedCommunity(
+            new LinkBandwidthExtendedCommunityBuilder()
             .setBandwidth(new Bandwidth(new byte[]{0x00, 0x00, (byte) 0xff, (byte) 0xff}))
             .build()).build();
         this.parser.serializeExtendedCommunity(expected, buff);