@@ -168,8 +168,8 @@ async def test_search_geometry(geom_fixture,
168168 cl = DataClient (session , base_url = TEST_URL )
169169 geom = request .getfixturevalue (geom_fixture )
170170 items_list = [
171- i async for i in cl .search (
172- [ 'PSScene' ], name = 'quick_search' , geometry = geom )
171+ i async for i in cl .search ([ 'PSScene' ], name = 'quick_search' ,
172+ geometry = geom )
173173 ]
174174 # check that request is correct
175175 expected_request = {
@@ -274,8 +274,8 @@ async def test_search_sort(item_descriptions,
274274
275275 # run through the iterator to actually initiate the call
276276 [
277- i async for i in cl .search (
278- [ 'PSScene' ], search_filter = search_filter , sort = sort )
277+ i async for i in cl .search ([ 'PSScene' ], search_filter = search_filter ,
278+ sort = sort )
279279 ]
280280
281281
@@ -297,8 +297,8 @@ async def test_search_limit(item_descriptions,
297297
298298 cl = DataClient (session , base_url = TEST_URL )
299299 items_list = [
300- i async for i in cl .search (
301- [ 'PSScene' ], search_filter = search_filter , limit = 2 )
300+ i async for i in cl .search ([ 'PSScene' ], search_filter = search_filter ,
301+ limit = 2 )
302302 ]
303303
304304 # check only the first two results were returned
0 commit comments