diff options
| author | Simon Charette <charette.s@gmail.com> | 2015-04-16 16:37:58 -0400 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2015-05-20 13:32:36 -0400 |
| commit | 2b2a2157d0f4f1c7c4244374a460953846c65dd4 (patch) | |
| tree | d6a432e9eb42ed711d48b2412aa78fc5ac72fb40 | |
| parent | 3ab3be4b5d9dca8d278f261c4c7d124275bbf3bd (diff) | |
[1.8.x] Refs #24652 -- Made sure template backend tests call their super setUpClass.
Backport of ead36e8a471389a6032d825c8245245ebb89ea5d from master
| -rw-r--r-- | tests/template_backends/test_dummy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/template_backends/test_dummy.py b/tests/template_backends/test_dummy.py index b529b70756..c2112d8f58 100644 --- a/tests/template_backends/test_dummy.py +++ b/tests/template_backends/test_dummy.py @@ -18,6 +18,7 @@ class TemplateStringsTests(SimpleTestCase): @classmethod def setUpClass(cls): + super(TemplateStringsTests, cls).setUpClass() params = { 'DIRS': [], 'APP_DIRS': True, |
