Use TestCase.addCleanup (#36560)
This commit is contained in:
parent
85ba29012f
commit
c33edbe5bb
103 changed files with 179 additions and 254 deletions
|
@ -23,8 +23,9 @@ class TestRing(unittest.TestCase):
|
|||
"""Initialize values for this test case class."""
|
||||
self.hass = get_test_home_assistant()
|
||||
self.config = VALID_CONFIG
|
||||
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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue