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:
@@ -28,11 +28,7 @@ class TestComponentsGroup(unittest.TestCase):
|
||||
def setUp(self):
|
||||
"""Set up things to be run when tests are started."""
|
||||
self.hass = get_test_home_assistant()
|
||||
|
||||
# pylint: disable=invalid-name
|
||||
def tearDown(self):
|
||||
"""Stop everything that was started."""
|
||||
self.hass.stop()
|
||||
self.addCleanup(self.hass.stop)
|
||||
|
||||
def test_setup_group_with_mixed_groupable_states(self):
|
||||
"""Try to set up a group with mixed groupable states."""
|
||||
|
||||
Reference in New Issue
Block a user