Fix checkstyle in yang-parser-impl and enable enforcement
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / yin / YinFileGroupingStmtTest.java
index b4da6ca7de936a89123e0e1a46ac4ee0664f874e..c16104fd93da93ba218f67844c3efb2e04a686a5 100644 (file)
@@ -49,12 +49,12 @@ public class YinFileGroupingStmtTest {
         final Iterator<GroupingDefinition> groupingsIterator = groupings.iterator();
         final GroupingDefinition grouping = groupingsIterator.next();
         assertEquals("service-ref", grouping.getQName().getLocalName());
-        assertEquals("Type of references to a particular service instance. This type\n" +
-                "can be used when defining module configuration to refer to a\n" +
-                "particular service instance. Containers using this grouping\n" +
-                "should not define anything else. The run-time implementation\n" +
-                "is expected to inject a reference to the service as the value\n" +
-                "of the container.", grouping.getDescription());
+        assertEquals("Type of references to a particular service instance. This type\n"
+                + "can be used when defining module configuration to refer to a\n"
+                + "particular service instance. Containers using this grouping\n"
+                + "should not define anything else. The run-time implementation\n"
+                + "is expected to inject a reference to the service as the value\n"
+                "of the container.", grouping.getDescription());
 
         final Collection<DataSchemaNode> children = grouping.getChildNodes();
         assertEquals(2, children.size());