Skip to content

Commit f2ad62e

Browse files
committed
tests: fix easy_install test assertion
1 parent 403bfce commit f2ad62e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setuptools/tests/test_easy_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def test_setup_requires_overrides_version_conflict(self):
406406

407407
lines = stdout.readlines()
408408
assert len(lines) > 0
409-
assert lines[-1].strip(), 'test_pkg'
409+
assert lines[-1].strip() == 'test_pkg'
410410

411411
def test_setup_requires_override_nspkg(self):
412412
"""

0 commit comments

Comments
 (0)