diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2021-12-19 14:35:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 14:35:56 (GMT) |
commit | 9c06fd89514a9a2865e2adcc472095f6949cecb2 (patch) | |
tree | f31aafbecc6c62735aed61146aef1ecbeb2f9c11 /Lib/unittest/async_case.py | |
parent | 3d3615f41f4ea73fe6707eb3673dfab482cb6a2b (diff) | |
download | cpython-9c06fd89514a9a2865e2adcc472095f6949cecb2.zip cpython-9c06fd89514a9a2865e2adcc472095f6949cecb2.tar.gz cpython-9c06fd89514a9a2865e2adcc472095f6949cecb2.tar.bz2 |
bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.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 d8bfaf6..3c57bb5 100644 --- a/Lib/unittest/async_case.py +++ b/Lib/unittest/async_case.py @@ -5,7 +5,6 @@ import warnings from .case import TestCase - class IsolatedAsyncioTestCase(TestCase): # Names intentionally have a long prefix # to reduce a chance of clashing with user-defined attributes |