diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-15 16:55:20 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-15 16:55:20 (GMT) |
commit | 0cd2bf46ba2260f896dab882d2b6d07cce3417cb (patch) | |
tree | b56d725c5e4ed9b4d11b3386b57ab5f8ce759dde /Lib | |
parent | f229bc5c53e3dd2c1d2914c10efff08af88ca277 (diff) | |
download | cpython-0cd2bf46ba2260f896dab882d2b6d07cce3417cb.zip cpython-0cd2bf46ba2260f896dab882d2b6d07cce3417cb.tar.gz cpython-0cd2bf46ba2260f896dab882d2b6d07cce3417cb.tar.bz2 |
Issue 24200: Fix broken unittest.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_inspect.py | 2 |
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 |