From 80c4f00ab44cb18f67d94d55882ae8511baac8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Mon, 20 May 2024 12:11:10 +0200 Subject: [PATCH] Fix typo in test docstring --- tests/test_markers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_markers.py b/tests/test_markers.py index 234e143c..775b51fd 100644 --- a/tests/test_markers.py +++ b/tests/test_markers.py @@ -388,7 +388,7 @@ def test_extra_str_normalization(self): assert str(Marker(rhs)) == f'extra == "{normalized_name}"' def test_python_full_version_untagged_user_provided(self): - """A user-provider python_full_version ending with a + fails to parse.""" + """A user-provided python_full_version ending with a + fails to parse.""" with pytest.raises(InvalidVersion): Marker("python_full_version < '3.12'").evaluate( {"python_full_version": "3.11.1+"}