Merge "Fix issues related to checkstyle enforcement"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / rpc / ItemLifecycleListenerImplTest.java
index 18a7942eb808679e8ed786e69b4c04a8c096fba6..23b5063aabcdfea916c016ba266b4787dd15a49f 100644 (file)
@@ -7,10 +7,10 @@
  */
 package org.opendaylight.openflowplugin.impl.rpc;
 
-
 import static org.mockito.Matchers.eq;
 import static org.mockito.Mockito.verify;
 import static org.mockito.Mockito.verifyNoMoreInteractions;
+
 import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
@@ -56,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();
     }