diff options
| author | Ville Skyttä <ville.skytta@iki.fi> | 2015-11-03 11:55:10 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-11-03 10:33:05 +0000 |
| commit | a3bbc38d545390f605f9bed947c9fdfe2ffa6055 (patch) | |
| tree | c6376e8cd0bce8c9d0e3e58a8a86022e3b107f32 /tests/db_functions/tests.py | |
| parent | ed3e066cc157ed69f2697454540f7fb60cfcd308 (diff) | |
[1.9.x] Fixed #25668 -- Misc spelling errors
Backport of 3ee18400ae9b916da1a3bee9c9c630fd223a2d3c from master
Diffstat (limited to 'tests/db_functions/tests.py')
| -rw-r--r-- | tests/db_functions/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/db_functions/tests.py b/tests/db_functions/tests.py index c18a4b25af..b5f4114aea 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) |
