@@ -207,8 +207,8 @@ async def test_search_geometry(geom_fixture,
207207 cl = DataClient (session , base_url = TEST_URL )
208208 geom = request .getfixturevalue (geom_fixture )
209209 items_list = [
210- i async for i in cl .search (
211- [ 'PSScene' ], name = 'quick_search' , geometry = geom )
210+ i async for i in cl .search ([ 'PSScene' ], name = 'quick_search' ,
211+ geometry = geom )
212212 ]
213213 # check that request is correct
214214 expected_request = {
@@ -355,8 +355,8 @@ async def test_search_sort(item_descriptions,
355355
356356 # run through the iterator to actually initiate the call
357357 [
358- i async for i in cl .search (
359- [ 'PSScene' ], search_filter = search_filter , sort = sort )
358+ i async for i in cl .search ([ 'PSScene' ], search_filter = search_filter ,
359+ sort = sort )
360360 ]
361361
362362
@@ -378,8 +378,8 @@ async def test_search_limit(item_descriptions,
378378
379379 cl = DataClient (session , base_url = TEST_URL )
380380 items_list = [
381- i async for i in cl .search (
382- [ 'PSScene' ], search_filter = search_filter , limit = 2 )
381+ i async for i in cl .search ([ 'PSScene' ], search_filter = search_filter ,
382+ limit = 2 )
383383 ]
384384
385385 # check only the first two results were returned
0 commit comments