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 28f4fd7 commit 9aa270cCopy full SHA for 9aa270c
integration/test_collection_config.py
@@ -1357,8 +1357,9 @@ def is_supported():
1357
update()
1358
1359
config = collection.config.get()
1360
- assert config.properties[0].description == "Name of the person"
1361
- assert config.properties[1].description == "Age of the person"
+ props = {prop.name: prop for prop in config.properties}
+ assert props["name"] == "Name of the person"
1362
+ assert props["age"] == "Age of the person"
1363
else:
1364
with pytest.raises(UnexpectedStatusCodeError):
1365
0 commit comments