Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Brett Cannon <brett@python.org>
  • Loading branch information
abravalheri and brettcannon committed Mar 15, 2022
1 parent 0a6559f commit ed0c623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_markers.py
Expand Up @@ -218,7 +218,7 @@ def test_str_repr_eq_hash(self, marker_string, expected):
@pytest.mark.parametrize(
("example1", "example2"),
[
# Test trivial comparisons
# Test trivial comparisons.
('python_version == "2.7"', 'python_version == "3.7"'),
(
'python_version == "2.7"',
Expand All @@ -228,7 +228,7 @@ def test_str_repr_eq_hash(self, marker_string, expected):
'python_version == "2.7"',
'(python_version == "2.7" and os_name == "linux")',
),
# Test different precedence
# Test different precedence.
(
'python_version == "2.7" and (os_name == "linux" or '
'sys_platform == "win32")',
Expand Down

0 comments on commit ed0c623

Please sign in to comment.