Fix checkstyle in yang-parser-impl and enable enforcement
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug6180Test.java
index 05f2288f121273e6a2da3fc6f4c2305d9cf31dc4..260b1f080af6c011dbed0e5c6b1edc14f7219dd3 100644 (file)
@@ -36,10 +36,10 @@ public class Bug6180Test {
         assertNotNull(schemaContext);
         assertEquals(1, schemaContext.getModules().size());
         final Module module = schemaContext.getModules().iterator().next();
-        assertEquals("    1. this text contains \"string enclosed in double quotes\" and"+
-                " special characters: \\,\n,\t          2. this text contains \"string enclosed in double quotes\" and"+
-                " special characters: \\,\n,\n,                     3. this text contains \"string enclosed in double quotes\" and"+
-                " special characters: \\,\n,\t      ", module.getDescription());
+        assertEquals("    1. this text contains \"string enclosed in double quotes\" and"
+                + " special characters: \\,\n,\t          2. this text contains \"string enclosed in double quotes\""
+                + " and special characters: \\,\n,\n,                     3. this text contains \"string enclosed in"
+                + " double quotes\" and special characters: \\,\n,\t      ", module.getDescription());
     }
 
     @Test