Merge "Fix issues related to checkstyle enforcement"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / rpc / ItemLifecycleListenerImplTest.java
index bf3a977815ab430758f97b128ed71aedfef73bf5..23b5063aabcdfea916c016ba266b4787dd15a49f 100644 (file)
@@ -7,7 +7,6 @@
  */
 package org.opendaylight.openflowplugin.impl.rpc;
 
-
 import static org.mockito.Matchers.eq;
 import static org.mockito.Mockito.verify;
 import static org.mockito.Mockito.verifyNoMoreInteractions;
@@ -57,7 +56,8 @@ public class ItemLifecycleListenerImplTest {
     @Test
     public void testOnAdded() throws Exception {
         itemLifecycleListener.onAdded(nodeInstanceIdentifier, node);
-        verify(deviceContext).writeToTransaction(eq(LogicalDatastoreType.OPERATIONAL), eq(nodeInstanceIdentifier), eq(node));
+        verify(deviceContext)
+                .writeToTransaction(eq(LogicalDatastoreType.OPERATIONAL), eq(nodeInstanceIdentifier), eq(node));
         verify(deviceContext).submitTransaction();
     }