From cebd81ef9b71982121703da15fdcd584662a103a Mon Sep 17 00:00:00 2001 From: Matt Thompson Date: Wed, 23 Jul 2014 13:21:51 +0100 Subject: [PATCH] Fix comment in tearDown() This minor change fixes two typos in the tearDown() method. Change-Id: Ie99c671cbfdaed01715046ea65d49e09114b1e08 --- cinderclient/tests/v2/test_shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cinderclient/tests/v2/test_shell.py b/cinderclient/tests/v2/test_shell.py index a52bd10d4..b4d458086 100644 --- a/cinderclient/tests/v2/test_shell.py +++ b/cinderclient/tests/v2/test_shell.py @@ -48,9 +48,9 @@ class ShellTest(utils.TestCase): client.get_client_class = lambda *_: fakes.FakeClient def tearDown(self): - # For some method like test_image_meta_bad_action we are + # For some methods like test_image_meta_bad_action we are # testing a SystemExit to be thrown and object self.shell has - # no time to get instantatiated which is OK in this case, so + # no time to get instantiated, which is OK in this case, so # we make sure the method is there before launching it. if hasattr(self.shell, 'cs'): self.shell.cs.clear_callstack()