diff options
Diffstat (limited to 'tests/template_tests/syntax_tests/test_autoescape.py')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_autoescape.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/syntax_tests/test_autoescape.py b/tests/template_tests/syntax_tests/test_autoescape.py index 6457fe31df..a908daca20 100644 --- a/tests/template_tests/syntax_tests/test_autoescape.py +++ b/tests/template_tests/syntax_tests/test_autoescape.py @@ -1,11 +1,11 @@ from django.template.base import TemplateSyntaxError -from django.test import TestCase +from django.test import SimpleTestCase from django.utils.safestring import mark_safe from .utils import render, setup, SafeClass, UnsafeClass -class AutoescapeTagTests(TestCase): +class AutoescapeTagTests(SimpleTestCase): @setup({'autoescape-tag01': '{% autoescape off %}hello{% endautoescape %}'}) def test_autoescape_tag01(self): |
