Remove AsyncWriteTransaction.submit() impls
[netconf.git] / netconf / sal-netconf-connector / src / test / java / org / opendaylight / netconf / sal / connect / netconf / sal / tx / ReadWriteTxTest.java
index 0fe89343e264625ebf8193459eea1fffc358ea61..f9d882ea9010341097b5d066a51d447e4cb14b54 100644 (file)
@@ -51,8 +51,8 @@ public class ReadWriteTxTest {
         verify(delegateWriteTx).merge(LogicalDatastoreType.CONFIGURATION, id2, leafNode);
         tx.delete(LogicalDatastoreType.CONFIGURATION, id2);
         verify(delegateWriteTx).delete(LogicalDatastoreType.CONFIGURATION, id2);
-        tx.submit();
-        verify(delegateWriteTx).submit();
+        tx.commit();
+        verify(delegateWriteTx).commit();
     }
 
     @Test