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:
parent
f671d4e3a6
commit
a54406651b
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user