X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=concepts%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fprotocol%2Fconcepts%2FISOSystemIdentifierTest.java;h=738e847878b26eb9236fb5f1834cd1006eb7a435;hb=a397aa4828919cc643647c96f5c916ee211f597f;hp=041ba39368e083e4c9dae8fe0e4373652dcd5c9f;hpb=35bce020a9c4fecb31e9962e5629b3d5a1bd0c47;p=bgpcep.git diff --git a/concepts/src/test/java/org/opendaylight/protocol/concepts/ISOSystemIdentifierTest.java b/concepts/src/test/java/org/opendaylight/protocol/concepts/ISOSystemIdentifierTest.java index 041ba39368..738e847878 100644 --- a/concepts/src/test/java/org/opendaylight/protocol/concepts/ISOSystemIdentifierTest.java +++ b/concepts/src/test/java/org/opendaylight/protocol/concepts/ISOSystemIdentifierTest.java @@ -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()); + } }