Fixed #25668 -- Misc spelling errors

This commit is contained in:
Ville Skyttä 2015-11-03 11:55:10 +02:00
parent a10cbbbc17
commit 3ee18400ae
12 changed files with 18 additions and 18 deletions

View file

@ -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)