Bug 8153: Enforce check-style rules for netconf - sal-netconf-connector
[netconf.git] / netconf / sal-netconf-connector / src / test / java / org / opendaylight / netconf / sal / connect / netconf / sal / tx / TxChainTest.java
index e56b02dd1c3387e538611a940cc63b68c3701b1b..56384cdf32f10e0c93f786ff84bf69641525195d 100644 (file)
@@ -51,7 +51,8 @@ public class TxChainTest {
     public void setUp() throws Exception {
         MockitoAnnotations.initMocks(this);
         when(broker.newReadOnlyTransaction()).thenReturn(readOnlyTx);
-        when(broker.newWriteOnlyTransaction()).thenReturn(writeOnlyTx1).thenReturn(writeOnlyTx2).thenReturn(writeOnlyTx3);
+        when(broker.newWriteOnlyTransaction()).thenReturn(writeOnlyTx1)
+                .thenReturn(writeOnlyTx2).thenReturn(writeOnlyTx3);
         when(writeOnlyTx1.addListener(any())).thenReturn(registration1);
         when(writeOnlyTx2.addListener(any())).thenReturn(registration2);
         when(writeOnlyTx3.addListener(any())).thenReturn(registration3);