asyncio: Fix ResourceWarning in test_subprocess.test_proc_exit()

This commit is contained in:
Victor Stinner 2015-01-30 00:11:42 +01:00
parent 47cd10d7a9
commit 0698638d79
1 changed files with 2 additions and 0 deletions

View File

@ -87,6 +87,8 @@ def test_proc_exited(self):
self.assertRaises(ProcessLookupError, transport.terminate)
self.assertRaises(ProcessLookupError, transport.kill)
transport.close()
class SubprocessMixin: