Fix checkstyle warnings in netconf-cli
[controller.git] / opendaylight / netconf / netconf-cli / src / test / java / org / opendaylight / controller / netconf / cli / NetconfCliTest.java
index 7d85aa4f28b64f58e55505aa699cf459654197a1..874669eff8efb65f0fcfa7fb39587cb83235d9fd 100644 (file)
@@ -61,7 +61,6 @@ public class NetconfCliTest {
         return parser.parseFiles(testFiles);
     }
 
-    // @Ignore
     @Test
     public void cliTest() throws ReadingException, IOException, WriteException, URISyntaxException {
 
@@ -112,12 +111,11 @@ public class NetconfCliTest {
         final List<Node<?>> redData = new GenericReader(console, new CommandArgHandlerRegistry(console,
                 new SchemaContextRegistry(schemaContext)), schemaContext).read(cont1);
         assertNotNull(redData);
-       assertEquals(1, redData.size());
+        assertEquals(1, redData.size());
 
         assertTrue(redData.get(0) instanceof CompositeNode);
         final CompositeNode redTopLevelNode = (CompositeNode) redData.get(0);
 
-        System.out.println("============================");
         new NormalizedNodeWriter(console, new OutFormatter()).write(cont1, redData);
 
     }