1
0
mirror of https://github.com/django/django.git synced 2025-02-23 07:55:07 +00:00

Fixed typo in settings_tests

This commit is contained in:
Tim Graham 2015-05-09 18:23:57 -04:00
parent c21b832c12
commit 3074c5b19e

View File

@ -112,7 +112,7 @@ class ClassDecoratedTestCase(ClassDecoratedTestCaseSuper):
@classmethod
def setUpClass(cls):
super(cls, ClassDecoratedTestCase).setUpClass()
super(ClassDecoratedTestCase, cls).setUpClass()
cls.foo = getattr(settings, 'TEST', 'BUG')
def test_override(self):