From 534416cfcd496dc7ed791278caa133f317bdee09 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Fri, 11 May 2012 15:12:56 -0700 Subject: [PATCH] Kill some pep8 errors in test_stacks.py Signed-off-by: Steven Dake --- heat/tests/test_stacks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/heat/tests/test_stacks.py b/heat/tests/test_stacks.py index 87aab4d5..8ebdd541 100644 --- a/heat/tests/test_stacks.py +++ b/heat/tests/test_stacks.py @@ -127,7 +127,6 @@ class stacksTest(unittest.TestCase): == 'F16-x86_64-gold') assert(result['ResourceProperties']['InstanceType'] == 'm1.large') - def test_stack_list(self): stack = self.start_wordpress_stack('test_stack_list') rt = {} @@ -163,7 +162,7 @@ class stacksTest(unittest.TestCase): assert(s['stack_id'] > 0) assert(s['template_description'].find('WordPress') != -1) - # allows testing of the test directly, shown below if __name__ == '__main__': + # allows testing of the test directly if __name__ == '__main__': sys.argv.append(__file__) nose.main() -- 2.45.2