@@ -207,8 +207,8 @@ async def test_search_geometry(geom_fixture,
207
207
cl = DataClient (session , base_url = TEST_URL )
208
208
geom = request .getfixturevalue (geom_fixture )
209
209
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 )
212
212
]
213
213
# check that request is correct
214
214
expected_request = {
@@ -355,8 +355,8 @@ async def test_search_sort(item_descriptions,
355
355
356
356
# run through the iterator to actually initiate the call
357
357
[
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 )
360
360
]
361
361
362
362
@@ -378,8 +378,8 @@ async def test_search_limit(item_descriptions,
378
378
379
379
cl = DataClient (session , base_url = TEST_URL )
380
380
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 )
383
383
]
384
384
385
385
# check only the first two results were returned
0 commit comments