mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Merge branch 'master' of github.com:ebean-orm/ebean
This commit is contained in:
@@ -81,7 +81,6 @@ public class TestAggregateFormula extends BaseTestCase {
|
||||
for (Contact contact : contacts) {
|
||||
Customer customer = contact.getCustomer();
|
||||
assertNotNull(customer.getName());
|
||||
assertNotNull(customer.getStatus());
|
||||
}
|
||||
|
||||
List<String> sql = LoggedSqlCollector.stop();
|
||||
@@ -112,7 +111,6 @@ public class TestAggregateFormula extends BaseTestCase {
|
||||
for (Contact contact : contacts) {
|
||||
Customer customer = contact.getCustomer();
|
||||
assertNotNull(customer.getName());
|
||||
assertNotNull(customer.getStatus());
|
||||
final Address billingAddress = customer.getBillingAddress();
|
||||
if (billingAddress != null) {
|
||||
assertNotNull(billingAddress.getCountry());
|
||||
|
||||
Reference in New Issue
Block a user