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

Translated a test to English for consistency.

Also fixed a typo.
This commit is contained in:
Aymeric Augustin
2013-09-22 21:20:22 +02:00
parent 2ca00faa91
commit e6c0020d19
2 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ class UpdateOrCreateTests(TestCase):
self.assertRaises(IntegrityError,
Person.objects.update_or_create, first_name="Tom", last_name="Smith")
def test_mananual_primary_key_test(self):
def test_manual_primary_key_test(self):
# If you specify an existing primary key, but different other fields,
# then you will get an error and data will not be updated.
ManualPrimaryKeyTest.objects.create(id=1, data="Original")