summaryrefslogtreecommitdiff
path: root/test/test_testlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_testlib.py')
-rw-r--r--test/test_testlib.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/test/test_testlib.py b/test/test_testlib.py
index d2240ae..f906560 100644
--- a/test/test_testlib.py
+++ b/test/test_testlib.py
@@ -724,8 +724,7 @@ class DecoratorTC(TestCase):
sys.version_info = self.pyversion
def test_require_version_good(self):
- """ should return the same function
- """
+ """should return the same function"""
def func():
pass
@@ -744,8 +743,7 @@ class DecoratorTC(TestCase):
)
def test_require_version_bad(self):
- """ should return a different function : skipping test
- """
+ """should return a different function : skipping test"""
def func():
pass
@@ -764,8 +762,7 @@ class DecoratorTC(TestCase):
)
def test_require_version_exception(self):
- """ should throw a ValueError exception
- """
+ """should throw a ValueError exception"""
def func():
pass
@@ -776,8 +773,7 @@ class DecoratorTC(TestCase):
self.assertRaises(ValueError, decorator, func)
def test_require_module_good(self):
- """ should return the same function
- """
+ """should return the same function"""
def func():
pass
@@ -793,8 +789,7 @@ class DecoratorTC(TestCase):
)
def test_require_module_bad(self):
- """ should return a different function : skipping test
- """
+ """should return a different function : skipping test"""
def func():
pass