diff options
Diffstat (limited to 'tests/settings_tests')
| -rw-r--r-- | tests/settings_tests/tests.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py index 19ffcc084d..97d734ed68 100644 --- a/tests/settings_tests/tests.py +++ b/tests/settings_tests/tests.py @@ -127,10 +127,7 @@ class ClassDecoratedTestCase(ClassDecoratedTestCaseSuper): Overriding a method on a super class and then calling that method on the super class should not trigger infinite recursion. See #17011. """ - try: - super(ClassDecoratedTestCase, self).test_max_recursion_error() - except RuntimeError: - self.fail() + super(ClassDecoratedTestCase, self).test_max_recursion_error() @modify_settings(ITEMS={'append': 'mother'}) |
