We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 761036d commit 76c0a9aCopy full SHA for 76c0a9a
tests/api/test_api.py
@@ -280,7 +280,8 @@ async def test_app_collection_fields_extension(
280
resp_json = resp.json()
281
resp_collections = resp_json["collections"]
282
assert len(resp_collections) > 0
283
- assert all(set(collection.keys()) == set(fields) for collection in resp_collections)
+ for collection in resp_collections:
284
+ assert set(collection.keys()) == set(fields + ["links", "collection"])
285
286
287
async def test_app_sort_extension(load_test_data, app_client, load_test_collection):
0 commit comments