We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2e2045 commit 3b9961cCopy full SHA for 3b9961c
tests/repositories/test_pypi_repository.py
@@ -141,8 +141,8 @@ def test_package() -> None:
141
assert win_inet.python_versions == "~2.7 || ~2.6"
142
assert (
143
str(win_inet.marker)
144
- == 'sys_platform == "win32" and (python_version == "2.7"'
145
- ' or python_version == "2.6") and extra == "socks"'
+ == 'sys_platform == "win32" and python_version == "2.7" and extra == "socks" or'
+ ' sys_platform == "win32" and python_version == "2.6" and extra == "socks"'
146
)
147
148
0 commit comments