summaryrefslogtreecommitdiff
path: root/tests/inline_formsets
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/inline_formsets
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/inline_formsets')
-rw-r--r--tests/inline_formsets/tests.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/inline_formsets/tests.py b/tests/inline_formsets/tests.py
index 167d2a68e1..3bb7586575 100644
--- a/tests/inline_formsets/tests.py
+++ b/tests/inline_formsets/tests.py
@@ -135,11 +135,9 @@ class InlineFormsetFactoryTest(TestCase):
If we specify fk_name, but it isn't a ForeignKey from the child model
to the parent model, we should get an exception.
"""
- self.assertRaises(
- Exception,
- "fk_name 'school' is not a ForeignKey to <class 'inline_formsets.models.Parent'>",
- inlineformset_factory, Parent, Child, fk_name='school'
- )
+ msg = "fk_name 'school' is not a ForeignKey to 'inline_formsets.Parent'."
+ with self.assertRaisesMessage(ValueError, msg):
+ inlineformset_factory(Parent, Child, fk_name='school')
def test_non_foreign_key_field(self):
"""