summaryrefslogtreecommitdiff
path: root/tests/admin_utils
diff options
context:
space:
mode:
authorHasan <hasan.r67@gmail.com>2016-01-17 14:56:39 +0330
committerTim Graham <timograham@gmail.com>2016-01-29 12:32:18 -0500
commit3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5 (patch)
tree0d1074cc65a72096e44a4165611fddfc5b7ef7fb /tests/admin_utils
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
downloaddjango-3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5.tar.gz
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/admin_utils')
-rw-r--r--tests/admin_utils/tests.py6
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"