You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
The test which verifies the modules dict first checked if the length was
correctly set and then checked the contents. But by checking the contents it
also checks the length so that check is obsolete. Additional does the check of
two lists show explicitly which elements are different between the lists:
> assert stdin.modules['pep8'] == [pep8]
E assert [<module 'pep...8.py'>, False] == [<module
'pep8...ges/pep8.py'>]
E Left contains more items, first extra item: False
E Use -v to get the full diff
But the original implementation at least shows the content of the list:
> assert len(stdin.modules['pep8']) == 1
E assert 2 == 1
E + where 2 = len([<module 'pep8...8.py'>, False])