1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed #29275 -- Made assertFormError() output "(actual errors: none)" instead of "(actual errors: )".

This commit is contained in:
Chris Lamb
2018-03-30 09:42:45 +01:00
committed by Tim Graham
parent 73cb62a331
commit 84ad721bd9
2 changed files with 3 additions and 3 deletions

View File

@@ -631,7 +631,7 @@ class AssertFormErrorTests(SimpleTestCase):
except AssertionError as e:
self.assertIn(
"The form 'form' in context 0 does not contain the non-field "
"error 'Some error.' (actual errors: )",
"error 'Some error.' (actual errors: none)",
str(e)
)
try:
@@ -639,7 +639,7 @@ class AssertFormErrorTests(SimpleTestCase):
except AssertionError as e:
self.assertIn(
"abc: The form 'form' in context 0 does not contain the "
"non-field error 'Some error.' (actual errors: )",
"non-field error 'Some error.' (actual errors: none)",
str(e)
)