Skip to content

Commit c8d1aa3

Browse files
committed
Tests: Don't assume tox sort by lowercase
Partial fix for #52
1 parent 2f10054 commit c8d1aa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_integration.py

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

618618
# default tox produces output sorted by package names
619619
assert packages == sorted(
620-
packages, key=lambda p: p.partition("==")[0].partition(" @ ")[0].lower()
620+
packages, key=lambda p: p.partition("==")[0].partition(" @ ")[0]
621621
)
622622

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

0 commit comments

Comments
 (0)