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: Ib9586a4c8fef171f0e83508d588b45097fa1c687
This commit is contained in:
XieYingYun 2017-03-30 10:55:37 +08:00
parent dc84e891ca
commit 61682538d2
1 changed files with 0 additions and 3 deletions

View File

@ -24,9 +24,6 @@ from neutron.tests import base
class TestOVSNativeConnection(base.BaseTestCase):
def setUp(self):
super(TestOVSNativeConnection, self).setUp()
@mock.patch.object(connection, 'TransactionQueue')
@mock.patch.object(idlutils, 'get_schema_helper')
@mock.patch.object(idl, 'Idl')