summaryrefslogtreecommitdiff
path: root/testing/test_doctest.py
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2020-05-01 14:40:15 +0300
committerRan Benita <ran@unusedvar.com>2020-06-05 11:34:19 +0300
commitff8b7884e8f1019f60f270eab2c4909ff557dd4e (patch)
treeacd646ed77e2623fc944a53ab7bc8525f0c865b0 /testing/test_doctest.py
parent43fa1ee8f9e865319758617d6a1e15bf7eef972f (diff)
downloadpytest-ff8b7884e8f1019f60f270eab2c4909ff557dd4e.tar.gz
Type annotate ParameterSet
Diffstat (limited to 'testing/test_doctest.py')
-rw-r--r--testing/test_doctest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/test_doctest.py b/testing/test_doctest.py
index 39afb4e98..c3ba60deb 100644
--- a/testing/test_doctest.py
+++ b/testing/test_doctest.py
@@ -1051,7 +1051,7 @@ class TestLiterals:
("1e3", "999"),
# The current implementation doesn't understand that numbers inside
# strings shouldn't be treated as numbers:
- pytest.param("'3.1416'", "'3.14'", marks=pytest.mark.xfail),
+ pytest.param("'3.1416'", "'3.14'", marks=pytest.mark.xfail), # type: ignore
],
)
def test_number_non_matches(self, testdir, expression, output):