Removed checkstyle warnings.
[bgpcep.git] / concepts / src / test / java / org / opendaylight / protocol / concepts / ISOSystemIdentifierTest.java
index 041ba39368e083e4c9dae8fe0e4373652dcd5c9f..738e847878b26eb9236fb5f1834cd1006eb7a435 100644 (file)
@@ -13,17 +13,17 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.network.
 
 public class ISOSystemIdentifierTest {
 
-       @Test(expected = IllegalArgumentException.class)
-       public void testISOSystemIdentifier() {
-               final byte[] b = new byte[] { 10, 12, 127, 0, 9, 1, 1 };
-               new IsoSystemIdentifier(b);
-       }
+    @Test(expected = IllegalArgumentException.class)
+    public void testISOSystemIdentifier() {
+        final byte[] b = new byte[] { 10, 12, 127, 0, 9, 1, 1 };
+        new IsoSystemIdentifier(b);
+    }
 
-       @Test
-       public void testGetBytes() {
-               final byte[] b = new byte[] { 10, 12, 127, 0, 9, 1 };
-               final IsoSystemIdentifier id = new IsoSystemIdentifier(b);
-               Assert.assertArrayEquals(new byte[] { 10, 12, 127, 0, 9, 1 }, id.getValue());
-       }
+    @Test
+    public void testGetBytes() {
+        final byte[] b = new byte[] { 10, 12, 127, 0, 9, 1 };
+        final IsoSystemIdentifier id = new IsoSystemIdentifier(b);
+        Assert.assertArrayEquals(new byte[] { 10, 12, 127, 0, 9, 1 }, id.getValue());
+    }
 
 }