diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2021-12-19 15:17:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 15:17:40 (GMT) |
commit | cdb4579607ad5e0a3978ec29b8407bea4d19b4fa (patch) | |
tree | baed0a84b2e8707719c1f27f8960bda92bd92d97 /Lib/unittest/async_case.py | |
parent | 9a28cf19b5d5f79eb072afc582f7baa9e7bd3ac2 (diff) | |
download | cpython-cdb4579607ad5e0a3978ec29b8407bea4d19b4fa.zip cpython-cdb4579607ad5e0a3978ec29b8407bea4d19b4fa.tar.gz cpython-cdb4579607ad5e0a3978ec29b8407bea4d19b4fa.tar.bz2 |
[3.10] bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198) (GH-30202)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>.
(cherry picked from commit 9c06fd89514a9a2865e2adcc472095f6949cecb2)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Diffstat (limited to 'Lib/unittest/async_case.py')
-rw-r--r-- | Lib/unittest/async_case.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/unittest/async_case.py b/Lib/unittest/async_case.py index 4f9a80b..2323119 100644 --- a/Lib/unittest/async_case.py +++ b/Lib/unittest/async_case.py @@ -4,7 +4,6 @@ import inspect from .case import TestCase - class IsolatedAsyncioTestCase(TestCase): # Names intentionally have a long prefix # to reduce a chance of clashing with user-defined attributes |