#238 - Potential fix for stackOverflow error / recursion issue

This commit is contained in:
rbygrave
2015-02-05 00:06:03 +13:00
parent 8fc3f2da15
commit a447361ea0
3 changed files with 5 additions and 10 deletions
@@ -53,9 +53,8 @@ public class TestInsertBatchThenFlushThenUpdate extends BaseTestCase {
// insert statements for EdExtendedParent
List<String> loggedSql2 = LoggedSqlCollector.start();
assertEquals(2, loggedSql2.size());
assertEquals(1, loggedSql2.size());
assertTrue(loggedSql2.get(0).contains(" update td_parent "));
assertTrue(loggedSql2.get(1).contains(" update td_child "));
} finally {
Ebean.endTransaction();