1
0
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:
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

@@ -14,10 +14,7 @@ class TestPanelIframe(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_wrong_config(self):
"""Test setup with wrong configuration."""