From: Yury Selivanov Date: Thu, 17 Dec 2015 01:41:11 +0000 (-0500) Subject: asyncio/tests: Fix a ResourceWarning due to unclosed loop X-Git-Tag: v3.4.5rc1~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea4ce1c7766e7bc5428c994af0419cdb77e02fe7;p=thirdparty%2FPython%2Fcpython.git asyncio/tests: Fix a ResourceWarning due to unclosed loop --- diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py index 47b17d1bcb37..5ee20f6a2979 100644 --- a/Lib/test/test_asyncio/test_tasks.py +++ b/Lib/test/test_asyncio/test_tasks.py @@ -2212,6 +2212,10 @@ class SleepTests(test_utils.TestCase): self.loop = asyncio.new_event_loop() asyncio.set_event_loop(None) + def tearDown(self): + self.loop.close() + self.loop = None + def test_sleep_zero(self): result = 0