Fix checkstyle in yang-parser-impl and enable enforcement
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug6240Test.java
index 73673e19586294719116fc53ff543404a454e90b..df81429bf14a388e76ab00b9b4fee6aa0acc06dc 100644 (file)
@@ -51,7 +51,8 @@ public class Bug6240Test {
         final ContainerSchemaNode subBarCon = (ContainerSchemaNode) dataChildByName;
 
         assertTrue(subBarCon.getDataChildByName(QName.create(NS, REV, "foo-grp-con")) instanceof ContainerSchemaNode);
-        assertTrue(subBarCon.getDataChildByName(QName.create(NS, REV, "sub-foo-grp-con")) instanceof ContainerSchemaNode);
+        assertTrue(subBarCon.getDataChildByName(QName.create(NS, REV, "sub-foo-grp-con"))
+            instanceof ContainerSchemaNode);
     }
 
     @Test