Skip to content

Commit b4da155

Browse files
authored
Fix test
1 parent 07b0b05 commit b4da155

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/api/test_api.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ async def test_app_query_extension_gte(load_test_data, app_client, load_test_col
272272

273273

274274
async def test_app_collection_fields_extension(load_test_data, app_client, load_test_collection):
275-
resp = await app_client.get(f"/collections", params={"fields": ["id", "title"]})
275+
fields = ["id", "title"]
276+
resp = await app_client.get(f"/collections", params={"fields": fields})
276277
assert resp.status_code == 201
277278
resp_json = resp.json()
278279
resp_collections = resp_json['collections']

0 commit comments

Comments
 (0)