1
0
mirror of https://github.com/django/django.git synced 2025-10-30 00:56:09 +00:00

[1.8.x] Fixed typos in code comments.

Backport of 039465a6a7 from master
This commit is contained in:
Adam Taylor
2015-01-20 07:54:12 -07:00
committed by Tim Graham
parent 90d9bf5ba4
commit 45aaced91e
26 changed files with 28 additions and 28 deletions

View File

@@ -117,7 +117,7 @@ class ClassDecoratedTestCase(ClassDecoratedTestCaseSuper):
self.assertEqual(settings.TEST, 'override')
def test_setupclass_override(self):
"""Test that settings are overriden within setUpClass -- refs #21281"""
"""Test that settings are overridden within setUpClass -- refs #21281"""
self.assertEqual(self.foo, 'override')
@override_settings(TEST='override2')