mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1434 - Remove deprecated API from EbeanServer - finder methods that take explicit transaction. Migrate to use ebeanServer.extended()
This commit is contained in:
@@ -321,7 +321,7 @@ public class TestQuerySingleAttribute extends BaseTestCase {
|
||||
Query<EUncle> query = Ebean.find(EUncle.class)
|
||||
.fetch("parent", "more");
|
||||
|
||||
Ebean.getDefaultServer().findSingleAttributeList(query, null);
|
||||
query.findSingleAttributeList();
|
||||
|
||||
assertThat(sqlOf(query)).contains("select t1.more from rawinherit_uncle t0 join rawinherit_parent t1 on t1.id = t0.parent_id");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user