Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 28, 2022
1 parent 6237710 commit cac583a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setuptools/tests/test_easy_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,8 @@ def test_many_pth_distributions_merge_together(self, tmpdir):
pth2.save()
assert pth2.paths, \
"the new_path entry should have been added by pth2 with its save() call"
assert pth2.paths[-1] == new_src_path, "and it should match exactly on the last entry"
assert pth2.paths[-1] == new_src_path, \
"and it should match exactly on the last entry"
# finally,
assert PthDistributions(pth_path).paths == pth2.paths, \
"we should have the exact same list at the end"
Expand Down

0 comments on commit cac583a

Please sign in to comment.