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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
103 changed files with 179 additions and 254 deletions

View file

@ -42,10 +42,7 @@ class TestFeedreaderComponent(unittest.TestCase):
data_file = self.hass.config.path(f"{feedreader.DOMAIN}.pickle")
if exists(data_file):
remove(data_file)
def tearDown(self):
"""Stop everything that was started."""
self.hass.stop()
self.addCleanup(self.hass.stop)
def test_setup_one_feed(self):
"""Test the general setup of this component."""