Remove unnecessary setUp function in testcase

In testcase, setUp will be called automatically. This patch used to
remove setUp functions that do nothing. Besides, it will keep code clean.

Change-Id: Id7641bc116c26f8b11f4441524c5e2c0442362a8
This commit is contained in:
XieYingYun 2017-03-30 18:49:06 +08:00
parent 0e82302b92
commit 4031288054
1 changed files with 0 additions and 3 deletions

View File

@ -24,9 +24,6 @@ from manila import test
class DBInterfaceTestCase(test.TestCase):
"""Test cases for the DB Interface methods."""
def setUp(self):
super(self.__class__, self).setUp()
def test_interface_methods(self):
"""Ensure that implementation methods match interfaces.