Skip to content

Commit

Permalink
re-add ctx
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesfisher-geo committed Nov 24, 2024
1 parent aa4dfbf commit 19f6caf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stac_fastapi/tests/extensions/test_aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ async def test_post_aggregate_datetime_min(app_client):


@pytest.mark.asyncio
async def test_get_aggregate_datetime_frequency(app_client):
async def test_get_aggregate_datetime_frequency(app_client, ctx):

resp = await app_client.get("/aggregate?aggregations=datetime_frequency")

Expand All @@ -474,7 +474,7 @@ async def test_get_aggregate_datetime_frequency(app_client):


@pytest.mark.asyncio
async def test_post_aggregate_datetime_frequency(app_client):
async def test_post_aggregate_datetime_frequency(app_client, ctx):

params = {
"aggregations": ["datetime_frequency"],
Expand All @@ -491,7 +491,7 @@ async def test_post_aggregate_datetime_frequency(app_client):


@pytest.mark.asyncio
async def test_get_aggregate_collection_frequency(app_client):
async def test_get_aggregate_collection_frequency(app_client, ctx):

resp = await app_client.get("/aggregate?aggregations=collection_frequency")

Expand All @@ -501,7 +501,7 @@ async def test_get_aggregate_collection_frequency(app_client):


@pytest.mark.asyncio
async def test_post_aggregate_collection_frequency(app_client):
async def test_post_aggregate_collection_frequency(app_client, ctx):

params = {
"aggregations": ["collection_frequency"],
Expand Down

0 comments on commit 19f6caf

Please sign in to comment.