Add rollback of transaction in last test

This commit is contained in:
2022-09-29 14:39:43 -05:00
parent 86ebe6ee4e
commit 2d2eae5c06

View File

@ -480,6 +480,8 @@ public class RDBMSQueryActionTest extends RDBMSActionTest
queryInput.setTransaction(transaction);
queryOutput = new QueryAction().execute(queryInput);
Assertions.assertEquals(6, queryOutput.getRecords().size(), "Query with the transaction should see the new row.");
transaction.rollback();
}
}