Tests: Remove the redundant method

This patch removes the redundant setUp() methods in order to
keep the code clean, In the subclass, setUp() methods has no
benefit from that, the one in superclass could satisfy that

Change-Id: I0114e4dcfe99b1c151ce84cace0fecb7952e3ef8
This commit is contained in:
junboli 2017-07-12 16:41:31 +08:00
parent 900e423059
commit b6021a0c77
1 changed files with 0 additions and 3 deletions

View File

@ -60,9 +60,6 @@ class TestCase(test.BaseTestCase):
cls.alt_client = mistral_client.MistralClientV2(
cls.alt_mgr.auth_provider, cls._service)
def setUp(self):
super(TestCase, self).setUp()
def tearDown(self):
super(TestCase, self).tearDown()