diff --git a/tests/test_markers.py b/tests/test_markers.py index 40445b37..7a7663ba 100644 --- a/tests/test_markers.py +++ b/tests/test_markers.py @@ -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"', @@ -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")',