mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 18:28:14 +02:00
Use TestCase.addCleanup (#36560)
This commit is contained in:
@ -40,8 +40,9 @@ class TestShellCommand(unittest.TestCase):
|
||||
"""
|
||||
self.hass = get_test_home_assistant()
|
||||
asyncio.get_child_watcher().attach_loop(self.hass.loop)
|
||||
self.addCleanup(self.tear_down_cleanup)
|
||||
|
||||
def tearDown(self): # pylint: disable=invalid-name
|
||||
def tear_down_cleanup(self):
|
||||
"""Stop everything that was started."""
|
||||
self.hass.stop()
|
||||
|
||||
|
Reference in New Issue
Block a user