assertEquals(2, items.length);
assertEquals(livePageId, items[0].getId());
assertEquals(otherLivePageId, items[1].getId());
// Search with recency boosting
q.withRececyPriority();
items = idx.getByQuery(q).getItems();
assertEquals(2, items.length);
assertEquals(otherLivePageId, items[0].getId());
assertEquals(livePageId, items[1].getId());
}