diff options
Diffstat (limited to 'Lib/test/test_asyncio/test_context.py')
-rw-r--r-- | Lib/test/test_asyncio/test_context.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_context.py b/Lib/test/test_asyncio/test_context.py index 6abddd9f251..c309faa9006 100644 --- a/Lib/test/test_asyncio/test_context.py +++ b/Lib/test/test_asyncio/test_context.py @@ -3,6 +3,10 @@ import decimal import unittest +def tearDownModule(): + asyncio.set_event_loop_policy(None) + + class DecimalContextTest(unittest.TestCase): def test_asyncio_task_decimal_context(self): |