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: I3fc25630f23537f20019a6b74114c571c32280ad
This commit is contained in:
XieYingYun 2017-03-30 16:46:59 +08:00 committed by Yuval Brik
parent 37a2cb11c9
commit f305f070f9
1 changed files with 0 additions and 3 deletions

View File

@ -36,9 +36,6 @@ resource_map = {
class CheckpointTest(base.TestCase):
def setUp(self):
super(CheckpointTest, self).setUp()
def test_create_in_section(self):
bank = bank_plugin.Bank(_InMemoryBankPlugin())
bank_lease = _InMemoryLeasePlugin()