From a9424225c8d926e8eb6ad2b28aee0b8dcc47fbce Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Tue, 15 Mar 2022 11:04:17 +0000 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Brett Cannon --- tests/test_markers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_markers.py b/tests/test_markers.py index 40445b378..7a7663ba0 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")',