mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed many spelling mistakes in code, comments, and docs.
This commit is contained in:
parent
b6dd0afead
commit
93452a70e8
61 changed files with 187 additions and 187 deletions
|
@ -65,10 +65,10 @@ class BulkCreateTests(TestCase):
|
|||
}, attrgetter("name"), ordered=False)
|
||||
|
||||
ProxyProxyCountry.objects.bulk_create([
|
||||
ProxyProxyCountry(name="Neitherlands", iso_two_letter="NT"),
|
||||
ProxyProxyCountry(name="Netherlands", iso_two_letter="NT"),
|
||||
])
|
||||
self.assertQuerysetEqual(ProxyProxyCountry.objects.all(), {
|
||||
"Qwghlm", "Tortall", "Neitherlands",
|
||||
"Qwghlm", "Tortall", "Netherlands",
|
||||
}, attrgetter("name"), ordered=False)
|
||||
|
||||
def test_non_auto_increment_pk(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue