mirror of
https://github.com/django/django.git
synced 2025-11-02 21:03:53 +00:00
Fixed #30400 -- Improved typography of user facing strings.
Thanks Claude Paroz for assistance with translations.
This commit is contained in:
parent
2b03e8e9e8
commit
42b9a23267
64 changed files with 195 additions and 195 deletions
|
|
@ -251,7 +251,7 @@ class TestValidation(PostgreSQLSimpleTestCase):
|
|||
with self.assertRaises(exceptions.ValidationError) as cm:
|
||||
field.clean({'a': 1}, None)
|
||||
self.assertEqual(cm.exception.code, 'not_a_string')
|
||||
self.assertEqual(cm.exception.message % cm.exception.params, 'The value of "a" is not a string or null.')
|
||||
self.assertEqual(cm.exception.message % cm.exception.params, 'The value of “a” is not a string or null.')
|
||||
|
||||
def test_none_allowed_as_value(self):
|
||||
field = HStoreField()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue