diff options
Diffstat (limited to 'tests/test_autodoc.py')
-rw-r--r-- | tests/test_autodoc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index d1da44396..25d833a29 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -401,7 +401,8 @@ def test_generate(): options.members = ALL assert_result_contains('.. class:: Class', 'module', 'test_autodoc') try: - assert_result_contains('.. exception:: CustomEx', 'module', 'test_autodoc') + assert_result_contains('.. exception:: CustomEx', + 'module', 'test_autodoc') except AssertionError: pass else: |