mirror of
https://github.com/django/django.git
synced 2025-09-07 03:00:43 +00:00
Added backwards compatibility for assertRaisesMessage callable_obj param.
This was broken in c2bc1cefdc
(refs #23763).
This commit is contained in:
parent
a0175724b0
commit
e89c3a4603
2 changed files with 10 additions and 0 deletions
|
@ -752,6 +752,12 @@ class AssertRaisesMsgTest(SimpleTestCase):
|
|||
raise ValueError("[.*x+]y?")
|
||||
self.assertRaisesMessage(ValueError, "[.*x+]y?", func1)
|
||||
|
||||
def test_callable_obj_param(self):
|
||||
# callable_obj was a documented kwarg in Django 1.8 and older.
|
||||
def func1():
|
||||
raise ValueError("[.*x+]y?")
|
||||
self.assertRaisesMessage(ValueError, "[.*x+]y?", callable_obj=func1)
|
||||
|
||||
|
||||
class AssertFieldOutputTests(SimpleTestCase):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue