Skip to content

Commit aa70e82

Browse files
committed
pre-commit
1 parent 24a90c8 commit aa70e82

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

stac_fastapi/elasticsearch/tests/api/test_api.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,13 @@ async def test_app_fields_extension(app_client, ctx, txn_client):
116116

117117

118118
async def test_app_fields_extension_query(app_client, ctx, txn_client):
119-
resp = await app_client.post("/search", json={"query": {"proj:epsg": {"gte": ctx.item["properties"]["proj:epsg"]}}, "collections": ["test-collection"]})
119+
resp = await app_client.post(
120+
"/search",
121+
json={
122+
"query": {"proj:epsg": {"gte": ctx.item["properties"]["proj:epsg"]}},
123+
"collections": ["test-collection"],
124+
},
125+
)
120126
assert resp.status_code == 200
121127
resp_json = resp.json()
122128
assert list(resp_json["features"][0]["properties"]) == ["datetime", "proj:epsg"]

0 commit comments

Comments
 (0)