Enable checkstyle in yang-model-util
[yangtools.git] / yang / yang-model-util / src / test / java / org / opendaylight / yangtools / yang / model / util / Bug4969Test.java
index 271dd708f0131446544c797a909eec71c6b22947..96de5bab22491948a27014b2dd494425895f3e94 100644 (file)
@@ -15,10 +15,10 @@ import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
 public class Bug4969Test {
     @Test
     public void testRegex() {
-        RevisionAwareXPath xPath = new RevisionAwareXPathImpl(
-                "nd:network[nd:network-id=current()/../network-ref]/nd:node[nd:node-id=current()/../node-ref]/termination-point/tp-id",
-                true);
+        RevisionAwareXPath xpath = new RevisionAwareXPathImpl(
+                "nd:network[nd:network-id=current()/../network-ref]/nd:node[nd:node-id=current()/../node-ref]"
+                + "/termination-point/tp-id", true);
         assertEquals("nd:network/nd:node/termination-point/tp-id",
-                SchemaContextUtil.stripConditionsFromXPathString(xPath));
+                SchemaContextUtil.stripConditionsFromXPathString(xpath));
     }
 }