TestRandomString was calling the wrong setUp

Just incorrect usage of super(). This was bypassing HeatTestCase.setUp()
and causing extra logs to be printed.

Change-Id: I6f77cce53b971b14637e8705c3f73993ac458550
Partial-bug: 1281226
This commit is contained in:
Angus Salkeld 2014-05-09 14:32:16 +10:00
parent f671d4e3a6
commit a54406651b

View File

@ -42,7 +42,7 @@ Resources:
'''
def setUp(self):
super(HeatTestCase, self).setUp()
super(TestRandomString, self).setUp()
self.ctx = utils.dummy_context()
def create_stack(self, template):