Fix new test in QCustomerTest

This commit is contained in:
Rob Bygrave
2023-08-21 11:22:02 +12:00
parent b0da647b0e
commit 01d89a01a5
@@ -312,7 +312,7 @@ public class QCustomerTest {
.query();
q.findList();
assertThat(q.getGeneratedSql()).isEqualTo("select t0.id, t0.name from be_customer t0 limit 10");
assertThat(q.getGeneratedSql()).contains(" from be_customer t0 left join be_contact t1 on t1.customer_id = t0.id where t1.first_name like ? and t1.first_name like ");
}
@Test