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
The tests for zipp.Path.iterdir() make assumptions about the order of the items returned. This isn't part of the iterdir() contract (order is arbitrary) and it makes the tests brittle to legitimate implementation changes.
The text was updated successfully, but these errors were encountered:
Adjust tests for `zipp.Path.iterdir()` to sort the resulting paths by name.
Previously the tests depended on how `CompleteDirs` inserts synthetic
directory entries, which is very much an implementation detail!
Resolvesjaraco#130
The tests for
zipp.Path.iterdir()
make assumptions about the order of the items returned. This isn't part of theiterdir()
contract (order is arbitrary) and it makes the tests brittle to legitimate implementation changes.The text was updated successfully, but these errors were encountered: