Skip to content

Commit b3577b2

Browse files
committed
Tests: Don't assume tox sorts by lowercase
Partial fix for #52
1 parent 22b0519 commit b3577b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_integration_tox3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ def test_noquiet_installed_packages(flag):
518518

519519
# default tox produces output sorted by package names
520520
assert packages == sorted(
521-
packages, key=lambda p: p.partition("==")[0].partition(" @ ")[0].lower()
521+
packages, key=lambda p: p.partition("==")[0].partition(" @ ")[0]
522522
)
523523

524524
# without a flag, the output must match tox defaults

0 commit comments

Comments
 (0)