From: Steven Dake Date: Fri, 11 May 2012 22:12:56 +0000 (-0700) Subject: Kill some pep8 errors in test_stacks.py X-Git-Tag: 2014.1~1834 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=534416cfcd496dc7ed791278caa133f317bdee09;p=openstack-build%2Fheat-build.git Kill some pep8 errors in test_stacks.py Signed-off-by: Steven Dake --- 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()