From a54406651b1582d5d9e5baa970193d1ac3a9df0c Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Fri, 9 May 2014 14:32:16 +1000 Subject: [PATCH] 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 --- heat/tests/test_random_string.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/tests/test_random_string.py b/heat/tests/test_random_string.py index 27d26f331f..b00d58be0e 100644 --- a/heat/tests/test_random_string.py +++ b/heat/tests/test_random_string.py @@ -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):