Skip to content

Commit 3b9961c

Browse files
committed
simplify marker simplify-
Companion to <python-poetry/poetry-core#530>
1 parent b2e2045 commit 3b9961c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/repositories/test_pypi_repository.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ def test_package() -> None:
141141
assert win_inet.python_versions == "~2.7 || ~2.6"
142142
assert (
143143
str(win_inet.marker)
144-
== 'sys_platform == "win32" and (python_version == "2.7"'
145-
' or python_version == "2.6") and extra == "socks"'
144+
== 'sys_platform == "win32" and python_version == "2.7" and extra == "socks" or'
145+
' sys_platform == "win32" and python_version == "2.6" and extra == "socks"'
146146
)
147147

148148

0 commit comments

Comments
 (0)