We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8171f30 commit 43d6e0fCopy full SHA for 43d6e0f
1 file changed
tests/integration/test_collection.py
@@ -160,11 +160,11 @@ def test(coll_name):
160
expected_kwargs["sort_key"] = "sid"
161
found_kwargs["sort_key"] = "sid"
162
expected = list(
163
- reversed([ent.name for ent in coll.list(**expected_kwargs)])
+ reversed([ent.name.lower() for ent in coll.list(**expected_kwargs)])
164
)
165
if len(expected) == 0:
166
logging.debug(f"No entities in collection {coll_name}; skipping test.")
167
- found = [ent.name for ent in coll.list(**found_kwargs)]
+ found = [ent.name.lower() for ent in coll.list(**found_kwargs)]
168
169
if expected != found:
170
logging.warning(
0 commit comments