Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix lint error
Browse files Browse the repository at this point in the history
asonnenschein committed Nov 25, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 0de470d commit 3ec025c
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
@@ -207,8 +207,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 = {
@@ -355,8 +355,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)
]


@@ -378,8 +378,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

0 comments on commit 3ec025c

Please sign in to comment.