summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template_tests/syntax_tests/test_setup.py')
-rw-r--r--tests/template_tests/syntax_tests/test_setup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/template_tests/syntax_tests/test_setup.py b/tests/template_tests/syntax_tests/test_setup.py
index fd7355a738..07377cea3f 100644
--- a/tests/template_tests/syntax_tests/test_setup.py
+++ b/tests/template_tests/syntax_tests/test_setup.py
@@ -1,4 +1,3 @@
-from django.conf import settings
from django.test import SimpleTestCase
from ..utils import setup
@@ -15,8 +14,8 @@ class SetupTests(SimpleTestCase):
@setup({})
def method(self):
cases.append([
- settings.TEMPLATE_STRING_IF_INVALID,
- settings.TEMPLATE_DEBUG,
+ self.engine.string_if_invalid,
+ self.engine.debug,
])
method(self)