Enforce findbug & checkstyle for bgp inet
[bgpcep.git] / bgp / inet / src / test / java / org / opendaylight / protocol / bgp / inet / Ipv6BgpPrefixSidParserTest.java
index 5a0e4464a8dda573b5b2475881d27184f9a27b87..5b62aa09ea0a9da66323b20dd6b0a781cd295de1 100644 (file)
@@ -22,9 +22,9 @@ public final class Ipv6BgpPrefixSidParserTest {
 
     private final Ipv6BgpPrefixSidParser handler = new Ipv6BgpPrefixSidParser();
 
-    private final byte[] expected = new byte[] {0, (byte)0x80, 0};
+    private final byte[] expected = new byte[]{0, (byte) 0x80, 0};
 
-    @Test(expected=IllegalArgumentException.class)
+    @Test(expected = IllegalArgumentException.class)
     public void testWrongTlvType() {
         this.handler.serializeBgpPrefixSidTlv(() -> BgpPrefixSidTlv.class, Unpooled.EMPTY_BUFFER);
     }