summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index 13db79a..3c27f55 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -1793,7 +1793,7 @@ class TestSignatureObject(unittest.TestCase):
S((pkd, pk))
self.assertTrue(repr(sig).startswith('<Signature'))
- self.assertTrue('"(po, pk' in repr(sig))
+ self.assertTrue('(po, pk' in repr(sig))
def test_signature_object_pickle(self):
def foo(a, b, *, c:1={}, **kw) -> {42:'ham'}: pass