Fix checkstyle violations in applications
[openflowplugin.git] / applications / forwardingrules-sync / src / test / java / org / opendaylight / openflowplugin / applications / frsync / impl / SyncReactorGuardDecoratorTest.java
index 099d45cc2fc8ada72eb57a00d0c545a54eca29c0..fa0fcbf38da13736ed7d5f421156358072cdf6ba 100644 (file)
@@ -47,7 +47,8 @@ public class SyncReactorGuardDecoratorTest {
     @Before
     public void setUp() throws Exception {
         reactor = new SyncReactorGuardDecorator(delegate);
-        InstanceIdentifier<Node> nodePath = InstanceIdentifier.create(Nodes.class).child(Node.class, new NodeKey(NODE_ID));
+        InstanceIdentifier<Node> nodePath = InstanceIdentifier.create(Nodes.class)
+                .child(Node.class, new NodeKey(NODE_ID));
         fcNodePath = nodePath.augmentation(FlowCapableNode.class);
 
         final Node operationalNode = Mockito.mock(Node.class);
@@ -76,4 +77,4 @@ public class SyncReactorGuardDecoratorTest {
         Mockito.verify(delegate).syncup(fcNodePath, syncupEntry);
         Mockito.verifyNoMoreInteractions(delegate);
     }
-}
\ No newline at end of file
+}