We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6402d8c commit 6a453f4Copy full SHA for 6a453f4
tests/test_fip_list.py
@@ -43,7 +43,7 @@ def test_get_fips_by_status():
43
assert isinstance(draft_fips, list)
44
assert isinstance(draft_fips_lower, list)
45
assert all(isinstance(f, Fip) for f in draft_fips)
46
- assert draft_fips == draft_fips_lower
+ assert len(draft_fips) == len(draft_fips_lower)
47
assert all(f.get_metadata().get('status', '').lower() == 'draft' for f in draft_fips)
48
49
# Check the list is sorted
0 commit comments