[1.9.x] Fixed #25668 -- Misc spelling errors

Backport of 3ee18400ae from master
This commit is contained in:
Ville Skyttä 2015-11-03 11:55:10 +02:00 committed by Tim Graham
parent ed3e066cc1
commit a3bbc38d54
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)