Fix checkstyle warnings for impl/connection package and OpenFlowPluginProviderImpl
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / connection / ConnectionContextImplTest.java
index ab4780e26b47f4b9abfabec373e638477b3e0608..bca7a967fba435e0c4f6159102529cfcbfd3b400 100644 (file)
@@ -45,7 +45,8 @@ public class ConnectionContextImplTest {
 
     @Before
     public void setUp() throws Exception {
-        Mockito.when(connetionAdapter.getRemoteAddress()).thenReturn(InetSocketAddress.createUnresolved("ofp-ut.example.org", 4242));
+        Mockito.when(connetionAdapter.getRemoteAddress())
+                .thenReturn(InetSocketAddress.createUnresolved("ofp-ut.example.org", 4242));
         Mockito.when(connetionAdapter.isAlive()).thenReturn(true);
 
         connectionContext = new ConnectionContextImpl(connetionAdapter);