diff options
Diffstat (limited to 'nova/test.py')
-rw-r--r-- | nova/test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/test.py b/nova/test.py index be259ce27..abd1294d4 100644 --- a/nova/test.py +++ b/nova/test.py @@ -69,7 +69,7 @@ class skip_test(object): class skip_if(object): - """Decorator that skips a test if contition is true.""" + """Decorator that skips a test if condition is true.""" def __init__(self, condition, msg): self.condition = condition self.message = msg @@ -152,7 +152,7 @@ class TestCase(unittest.TestCase): if FLAGS.image_service == 'nova.image.fake.FakeImageService': nova.image.fake.FakeImageService_reset() - # Reset any overriden flags + # Reset any overridden flags self.reset_flags() # Stop any timers |