summaryrefslogtreecommitdiffstats
path: root/nova/test.py
diff options
context:
space:
mode:
authorJason Koelker <jason@koelker.net>2011-05-26 16:38:33 -0500
committerJason Koelker <jason@koelker.net>2011-05-26 16:38:33 -0500
commitfbda409b8c803f0ef46bc2e239beacd1a2697a11 (patch)
treec77cc362be0d59ba187148e991dc65ca44e954e0 /nova/test.py
parent7422146ec666f5d3ad3452361489270516ee6084 (diff)
parenta380edb3c1ae988406c6a79272ae5e07cda5856c (diff)
merge with dietz
Diffstat (limited to 'nova/test.py')
-rw-r--r--nova/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/test.py b/nova/test.py
index 97896a381..96ce0df14 100644
--- a/nova/test.py
+++ b/nova/test.py
@@ -56,13 +56,13 @@ LOG = log.getLogger('nova.tests')
class skip_test(object):
- """Decorator that skips a test"""
+ """decorator that skips a test"""
def __init__(self, msg):
self.message = msg
def __call__(self, func):
def _skipper(*args, **kw):
- """Wrapped skipper function."""
+ """wrapped skipper function."""
raise nose.SkipTest(self.message)
_skipper.__name__ = func.__name__
_skipper.__doc__ = func.__doc__