#535 - Bean lazy loading can execute an extra query when one of the lazy loaded beans has been deleted

This commit is contained in:
Robin Bygrave
2016-01-21 20:51:45 +13:00
parent 6ab974a330
commit d1462b032a
@@ -77,7 +77,7 @@ public class TestBatchLazyWithDeleted extends BaseTestCase {
list.get(2).getMaster().getName();
Assert.assertTrue(false);
} catch (EntityNotFoundException e) {
// this bean was deleted and lazy loading failed
// this bean was deleted and lazy loading failed
Assert.assertTrue(true);
}