diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_asyncio/test_pep492.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_pep492.py b/Lib/test/test_asyncio/test_pep492.py index 82bb995..c7d5f21 100644 --- a/Lib/test/test_asyncio/test_pep492.py +++ b/Lib/test/test_asyncio/test_pep492.py @@ -142,7 +142,7 @@ class CoroutineTests(BaseTest): foo_coro = foo() self.assertRegex( repr(foo_coro), - r'<CoroWrapper .*\.foo running at .*pep492.*>') + r'<CoroWrapper .*\.foo\(\) running at .*pep492.*>') with support.check_warnings((r'.*foo.*was never', RuntimeWarning)): |