Skip to content

Commit

Permalink
simplify marker simplify-
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbleby committed Dec 3, 2022
1 parent b2e2045 commit 3b9961c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/repositories/test_pypi_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ def test_package() -> None:
assert win_inet.python_versions == "~2.7 || ~2.6"
assert (
str(win_inet.marker)
== 'sys_platform == "win32" and (python_version == "2.7"'
' 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"'
)


Expand Down

0 comments on commit 3b9961c

Please sign in to comment.