Skip to content

Commit 6a453f4

Browse files
committed
Fixing tests
1 parent 6402d8c commit 6a453f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_fip_list.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_get_fips_by_status():
4343
assert isinstance(draft_fips, list)
4444
assert isinstance(draft_fips_lower, list)
4545
assert all(isinstance(f, Fip) for f in draft_fips)
46-
assert draft_fips == draft_fips_lower
46+
assert len(draft_fips) == len(draft_fips_lower)
4747
assert all(f.get_metadata().get('status', '').lower() == 'draft' for f in draft_fips)
4848

4949
# Check the list is sorted

0 commit comments

Comments
 (0)