Add ByteBufUtils
[bgpcep.git] / rsvp / impl / src / test / java / org / opendaylight / protocol / rsvp / parser / impl / EROSubobjectParserTest.java
index 377ed5ab8b7b4023a95564b4a65999071486a3a7..96e46efc63345100381d8e6b9851c581e26bc95c 100644 (file)
@@ -158,13 +158,13 @@ public class EROSubobjectParserTest {
             parser.parseSubobject(null, true);
             Assert.fail();
         } catch (final IllegalArgumentException e) {
-            Assert.assertEquals("Array of bytes is mandatory. Can't be null or empty.", e.getMessage());
+            Assert.assertEquals("Array of bytes is mandatory. Cannot be null or empty.", e.getMessage());
         }
         try {
             parser.parseSubobject(Unpooled.EMPTY_BUFFER, true);
             Assert.fail();
         } catch (final IllegalArgumentException e) {
-            Assert.assertEquals("Array of bytes is mandatory. Can't be null or empty.", e.getMessage());
+            Assert.assertEquals("Array of bytes is mandatory. Cannot be null or empty.", e.getMessage());
         }
     }