Skip to content

Commit 49e093e

Browse files
committed
fix formatting
1 parent 8f15381 commit 49e093e

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

stac_fastapi/tests/extensions/test_filter.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,15 @@ async def test_search_filter_extension_s_contains_property(app_client, ctx):
528528
@pytest.mark.asyncio
529529
async def test_search_filter_extension_s_within_property(app_client, ctx):
530530
within_geom = {
531-
"coordinates": [[[152.15052873427666, -33.82243006904891], [150.1000346138806, -34.257132625788756], [149.5776607193635, -32.514709769700254], [151.6262528041627, -32.08081674221862], [152.15052873427666, -33.82243006904891]]],
531+
"coordinates": [
532+
[
533+
[152.15052873427666, -33.82243006904891],
534+
[150.1000346138806, -34.257132625788756],
535+
[149.5776607193635, -32.514709769700254],
536+
[151.6262528041627, -32.08081674221862],
537+
[152.15052873427666, -33.82243006904891],
538+
]
539+
],
532540
"type": "Polygon",
533541
}
534542
params = {
@@ -582,9 +590,7 @@ async def test_search_filter_extension_cql2text_s_intersects_property(app_client
582590

583591
@pytest.mark.asyncio
584592
async def test_search_filter_extension_cql2text_s_contains_property(app_client, ctx):
585-
filter = (
586-
'S_CONTAINS("geometry",POINT(150.04 -33.14))'
587-
)
593+
filter = 'S_CONTAINS("geometry",POINT(150.04 -33.14))'
588594
params = {
589595
"filter": filter,
590596
"filter_lang": "cql2-text",

0 commit comments

Comments
 (0)