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