Skip to content

Commit 5dc165d

Browse files
committed
Fix test TestLazyJoin2
1 parent 103e832 commit 5dc165d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ebean-test/src/test/java/org/tests/batchload/TestLazyJoin2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void testLazyOnNonLoaded() {
5757
assertNotNull(billingAddress);
5858

5959
List<Order> list = DB.find(Order.class).fetchLazy("customer", "name")
60-
.fetch("customer.contacts", "contactName, phone, email").fetch("customer.shippingAddress")
60+
.fetch("customer.contacts", "firstName, lastName, phone, email").fetch("customer.shippingAddress")
6161
.where().eq("status", Order.Status.NEW).order().asc("id").findList();
6262

6363
Order order2 = list.get(0);

0 commit comments

Comments
 (0)