summaryrefslogtreecommitdiff
path: root/tests/db_functions/tests.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2015-11-03 11:55:10 +0200
committerVille Skyttä <ville.skytta@iki.fi>2015-11-03 11:58:13 +0200
commit3ee18400ae9b916da1a3bee9c9c630fd223a2d3c (patch)
treebed3af8d3fa7daeef7e8ba127d0e70a850a8bb7f /tests/db_functions/tests.py
parenta10cbbbc17d4244812ef713437fa44207fe1a223 (diff)
Fixed #25668 -- Misc spelling errors
Diffstat (limited to 'tests/db_functions/tests.py')
-rw-r--r--tests/db_functions/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/db_functions/tests.py b/tests/db_functions/tests.py
index 491ce6cefe..b6ab915d4d 100644
--- a/tests/db_functions/tests.py
+++ b/tests/db_functions/tests.py
@@ -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)