summaryrefslogtreecommitdiff
path: root/tests/test_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_base.py')
-rw-r--r--tests/test_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_base.py b/tests/test_base.py
index 4978d10..8ac2f44 100644
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -321,7 +321,7 @@ class FactoryCreationTestCase(unittest.TestCase):
try:
class Test(base.Factory):
pass
- self.fail()
+ self.fail() # pragma: no cover
except base.Factory.AssociatedClassError as e:
self.assertTrue('autodiscovery' not in str(e))
@@ -348,5 +348,5 @@ class PostGenerationParsingTestCase(unittest.TestCase):
-if __name__ == '__main__':
+if __name__ == '__main__': # pragma: no cover
unittest.main()