From c7f067f2315c92d87c253b433f641834525f3b4b Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 18 Feb 2014 07:06:10 -0800 Subject: [PATCH] Fixed incorrect indentation in the tests Change-Id: I8900ac8542a9a0fd3ea41a8031eb66e79cefecd6 --- heatclient/tests/test_template_utils.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/heatclient/tests/test_template_utils.py b/heatclient/tests/test_template_utils.py index 6073e9d2..bb21c4e9 100644 --- a/heatclient/tests/test_template_utils.py +++ b/heatclient/tests/test_template_utils.py @@ -301,13 +301,13 @@ class TestGetTemplateContents(testtools.TestCase): 'Could not fetch template from file://%s' % tmpl_file.name) def test_get_template_contents_file_none(self): - ex = self.assertRaises( - exc.CommandError, - template_utils.get_template_contents) - self.assertEqual( - str(ex), - ('Need to specify exactly one of --template-file, ' - '--template-url or --template-object')) + ex = self.assertRaises( + exc.CommandError, + template_utils.get_template_contents) + self.assertEqual( + str(ex), + ('Need to specify exactly one of --template-file, ' + '--template-url or --template-object')) def test_get_template_contents_parse_error(self): with tempfile.NamedTemporaryFile() as tmpl_file: