diff options
Diffstat (limited to 'tests/admin_utils')
| -rw-r--r-- | tests/admin_utils/tests.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/admin_utils/tests.py b/tests/admin_utils/tests.py index 01ec6702cc..0da9143c19 100644 --- a/tests/admin_utils/tests.py +++ b/tests/admin_utils/tests.py @@ -221,10 +221,8 @@ class UtilsTests(SimpleTestCase): str("article") ) - self.assertRaises( - AttributeError, - lambda: label_for_field("unknown", Article) - ) + with self.assertRaises(AttributeError): + label_for_field("unknown", Article) def test_callable(obj): return "nothing" |
