No effective change - update test to give slf4j a little time in multithreaded case to catch logged sql

This commit is contained in:
Robin Bygrave
2015-08-07 13:24:26 +12:00
parent ce0d73cf23
commit 48f0da9343
@@ -46,6 +46,7 @@ public class TestQueryFindPagedList extends BaseTestCase {
PagedList<Order> pagedList = Ebean.find(Order.class).findPagedList(0, 3);
LoggedSqlCollector.start();
Thread.sleep(1); // give slf4j a little time in this multithreaded test case
Future<Integer> rowCount = pagedList.getFutureRowCount();
List<Order> orders = pagedList.getList();