mirror of
https://github.com/django/django.git
synced 2025-12-15 21:45:20 +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
|
|
@ -133,7 +133,7 @@ class TestValidation(SimpleTestCase):
|
|||
with self.assertRaises(exceptions.ValidationError) as cm:
|
||||
field.clean('550e8400', None)
|
||||
self.assertEqual(cm.exception.code, 'invalid')
|
||||
self.assertEqual(cm.exception.message % cm.exception.params, "'550e8400' is not a valid UUID.")
|
||||
self.assertEqual(cm.exception.message % cm.exception.params, '“550e8400” is not a valid UUID.')
|
||||
|
||||
def test_uuid_instance_ok(self):
|
||||
field = models.UUIDField()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue