diff options
| author | Tim Graham <timograham@gmail.com> | 2015-05-09 18:23:57 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-05-09 18:23:57 -0400 |
| commit | 3074c5b19e2da5f7a5359c3cf3c5308eb194cdf9 (patch) | |
| tree | 61a0c2fba751143dc2e5bc152491516b5cc5fb6e /tests/settings_tests | |
| parent | c21b832c1260c6ad4bd8527338a65f6d8930feaf (diff) | |
Fixed typo in settings_tests
Diffstat (limited to 'tests/settings_tests')
| -rw-r--r-- | tests/settings_tests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py index 6a444d56a9..377a22916c 100644 --- a/tests/settings_tests/tests.py +++ b/tests/settings_tests/tests.py @@ -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): |
