|
@@ -191,11 +191,10 @@ class CharFieldTests(IsolatedModelsTestCase):
|
|
|
errors = validator.check_field(field)
|
|
|
expected = [
|
|
|
Error(
|
|
|
- ('Under mysql backend, the field cannot have a "max_length" '
|
|
|
- 'greated than 255 when it is unique.'),
|
|
|
+ 'MySQL does not allow unique CharFields to have a max_length > 255.',
|
|
|
hint=None,
|
|
|
obj=field,
|
|
|
- id='E047',
|
|
|
+ id='mysql.E001',
|
|
|
)
|
|
|
]
|
|
|
self.assertEqual(errors, expected)
|