mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 04:50:05 +00:00
Use TestCase.addCleanup (#36560)
This commit is contained in:
@@ -20,10 +20,7 @@ class TestCommandSwitch(unittest.TestCase):
|
||||
def setUp(self):
|
||||
"""Set up things to be run when tests are started."""
|
||||
self.hass = get_test_home_assistant()
|
||||
|
||||
def tearDown(self):
|
||||
"""Stop everything that was started."""
|
||||
self.hass.stop()
|
||||
self.addCleanup(self.hass.stop)
|
||||
|
||||
def test_state_none(self):
|
||||
"""Test with none state."""
|
||||
|
||||
Reference in New Issue
Block a user