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

Refs #29358 -- Corrected wording in primary key check message.

This commit is contained in:
Carlton Gibson
2018-05-03 15:28:37 +02:00
committed by GitHub
parent 816b8d9518
commit 21fd8041c1
3 changed files with 5 additions and 3 deletions

View File

@@ -724,7 +724,7 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Model.check(), [
Error(
"Model can not contain more than one 'primary_key' field.",
"The model cannot have more than one field with 'primary_key=True'.",
obj=Model,
id='models.E026',
)