diff options
Diffstat (limited to 'tests/template_tests/syntax_tests/test_for.py')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_for.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/syntax_tests/test_for.py b/tests/template_tests/syntax_tests/test_for.py index 94b9b95cca..0c55c43585 100644 --- a/tests/template_tests/syntax_tests/test_for.py +++ b/tests/template_tests/syntax_tests/test_for.py @@ -2,13 +2,13 @@ import warnings from django.conf import settings from django.template.base import TemplateSyntaxError -from django.test import TestCase +from django.test import SimpleTestCase from django.utils.deprecation import RemovedInDjango20Warning from .utils import render, setup -class ForTagTests(TestCase): +class ForTagTests(SimpleTestCase): @setup({'for-tag01': '{% for val in values %}{{ val }}{% endfor %}'}) def test_for_tag01(self): |
