Skip to content

Commit 372eb81

Browse files
committed
Whoops, formatting
1 parent fcf2760 commit 372eb81

File tree

2 files changed

+6
-18
lines changed

2 files changed

+6
-18
lines changed

stac_fastapi/pgstac/tests/api/test_api.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -392,15 +392,9 @@ async def test_search_geometry_collection_intersects(
392392
intersects = {
393393
"type": "GeometryCollection",
394394
"geometries": [
395-
{
396-
"type": "Point",
397-
"coordinates": point
398-
},
399-
{
400-
"type": "LineString",
401-
"coordinates": line
402-
}
403-
]
395+
{"type": "Point", "coordinates": point},
396+
{"type": "LineString", "coordinates": line},
397+
],
404398
}
405399

406400
params = {

stac_fastapi/sqlalchemy/tests/api/test_api.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -380,15 +380,9 @@ def test_search_geometry_collection_intersects(
380380
intersects = {
381381
"type": "GeometryCollection",
382382
"geometries": [
383-
{
384-
"type": "Point",
385-
"coordinates": point
386-
},
387-
{
388-
"type": "LineString",
389-
"coordinates": line
390-
}
391-
]
383+
{"type": "Point", "coordinates": point},
384+
{"type": "LineString", "coordinates": line},
385+
],
392386
}
393387

394388
params = {

0 commit comments

Comments
 (0)