mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Use TestCase.addCleanup (#36560)
This commit is contained in:
@@ -21,8 +21,9 @@ class TestFanEntity(unittest.TestCase):
|
||||
def setUp(self):
|
||||
"""Set up test data."""
|
||||
self.fan = BaseFan()
|
||||
self.addCleanup(self.tear_down_cleanup)
|
||||
|
||||
def tearDown(self):
|
||||
def tear_down_cleanup(self):
|
||||
"""Tear down unit test data."""
|
||||
self.fan = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user