diff options
Diffstat (limited to 'tests/template_tests/syntax_tests/test_cycle.py')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_cycle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/syntax_tests/test_cycle.py b/tests/template_tests/syntax_tests/test_cycle.py index cbe579c4b9..bab3418e84 100644 --- a/tests/template_tests/syntax_tests/test_cycle.py +++ b/tests/template_tests/syntax_tests/test_cycle.py @@ -2,13 +2,13 @@ import warnings from django.template.base import TemplateSyntaxError from django.template.loader import get_template -from django.test import TestCase +from django.test import SimpleTestCase from django.utils.deprecation import RemovedInDjango20Warning from .utils import render, setup -class CycleTagTests(TestCase): +class CycleTagTests(SimpleTestCase): @setup({'cycle01': '{% cycle a %}'}) def test_cycle01(self): |
