mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +00:00
Fixed crash comparing CheckMessage objects to non-CheckMessage objects.
This commit is contained in:
parent
68b580323b
commit
19e20a2a3f
2 changed files with 9 additions and 2 deletions
|
@ -124,6 +124,10 @@ class MessageTests(SimpleTestCase):
|
|||
e2 = Error("Error2", obj=SimpleModel)
|
||||
self.assertNotEqual(e1, e2)
|
||||
|
||||
def test_not_equal_to_non_check(self):
|
||||
e = Error("Error", obj=DummyObj())
|
||||
self.assertNotEqual(e, 'a string')
|
||||
|
||||
|
||||
def simple_system_check(**kwargs):
|
||||
simple_system_check.kwargs = kwargs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue