Fix checkstyle violations in openflowjava extensions
[openflowplugin.git] / extension / openflowjava-extension-nicira / src / test / java / org / opendaylight / openflowjava / nx / codec / match / NxmHeaderTest.java
index e05d0b13dde506ffa3b94a5d2c46453ce7d0974b..47a58644c439be32e14b6f38a44b7d436bb7578d 100644 (file)
@@ -24,7 +24,7 @@ public class NxmHeaderTest {
     private static final int VALUE_LENGTH = 14;
 
     @Test
-    public void NxmHeaderTest() {
+    public void nxmHeaderTest() {
         header = createHeader();
         nxmHeader = new NxmHeader(header);
 
@@ -61,12 +61,9 @@ public class NxmHeaderTest {
         header = createHeader();
         nxmHeader = new NxmHeader(header);
 
-        String shouldBe = new String("NxmHeader " +
-                                        "[headerAsLong=" + header + ", " +
-                                        "oxmClass=" + OxmMatchConstants.NXM_1_CLASS + "," +
-                                        " nxmField=" + NXM_FIELD_CODE + "," +
-                                        " hasMask=" + false + "," +
-                                        " length=" + VALUE_LENGTH + "]");
+        String shouldBe = new String("NxmHeader " + "[headerAsLong=" + header + ", " + "oxmClass="
+                + OxmMatchConstants.NXM_1_CLASS + "," + " nxmField=" + NXM_FIELD_CODE + "," + " hasMask=" + false + ","
+                + " length=" + VALUE_LENGTH + "]");
 
         assertEquals(shouldBe, nxmHeader.toString());
     }
@@ -85,4 +82,4 @@ public class NxmHeaderTest {
 
         return result;
     }
-}
\ No newline at end of file
+}