Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
asonnenschein committed Dec 3, 2024
1 parent b54ae86 commit cf56b6b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/integration/test_data_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ async def test_search_geometry(geom_fixture,
cl = DataClient(session, base_url=TEST_URL)
geom = request.getfixturevalue(geom_fixture)
items_list = [
i async for i in cl.search(
['PSScene'], name='quick_search', geometry=geom)
i async for i in cl.search(['PSScene'], name='quick_search',
geometry=geom)
]
# check that request is correct
expected_request = {
Expand Down Expand Up @@ -274,8 +274,8 @@ async def test_search_sort(item_descriptions,

# run through the iterator to actually initiate the call
[
i async for i in cl.search(
['PSScene'], search_filter=search_filter, sort=sort)
i async for i in cl.search(['PSScene'], search_filter=search_filter,
sort=sort)
]


Expand All @@ -297,8 +297,8 @@ async def test_search_limit(item_descriptions,

cl = DataClient(session, base_url=TEST_URL)
items_list = [
i async for i in cl.search(
['PSScene'], search_filter=search_filter, limit=2)
i async for i in cl.search(['PSScene'], search_filter=search_filter,
limit=2)
]

# check only the first two results were returned
Expand Down

0 comments on commit cf56b6b

Please sign in to comment.