mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +00:00
Fixed #25668 -- Misc spelling errors
This commit is contained in:
parent
a10cbbbc17
commit
3ee18400ae
12 changed files with 18 additions and 18 deletions
|
@ -136,7 +136,7 @@ class FunctionTests(TestCase):
|
|||
self.assertEqual(articles.first().last_updated, now)
|
||||
|
||||
@skipIfDBFeature('greatest_least_ignores_nulls')
|
||||
def test_greatest_propogates_null(self):
|
||||
def test_greatest_propagates_null(self):
|
||||
now = timezone.now()
|
||||
|
||||
Article.objects.create(title="Testing with Django", written=now)
|
||||
|
@ -231,7 +231,7 @@ class FunctionTests(TestCase):
|
|||
self.assertEqual(articles.first().first_updated, now)
|
||||
|
||||
@skipIfDBFeature('greatest_least_ignores_nulls')
|
||||
def test_least_propogates_null(self):
|
||||
def test_least_propagates_null(self):
|
||||
now = timezone.now()
|
||||
|
||||
Article.objects.create(title="Testing with Django", written=now)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue