Use TestCase.addCleanup (#36560)

This commit is contained in:
Paulus Schoutsen
2020-06-08 12:26:40 -07:00
committed by GitHub
parent 85ba29012f
commit c33edbe5bb
103 changed files with 179 additions and 254 deletions

View File

@@ -35,8 +35,9 @@ class TestScene(unittest.TestCase):
assert not self.light_1.is_on
assert not self.light_2.is_on
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()