diff --git a/tests/template_tests/syntax_tests/test_filter_syntax.py b/tests/template_tests/syntax_tests/test_filter_syntax.py
index e9f0491..fb55875 100644
a
|
b
|
from ..utils import SomeClass, SomeOtherException, UTF8Class, setup
|
9 | 9 | |
10 | 10 | class FilterSyntaxTests(SimpleTestCase): |
11 | 11 | |
| 12 | @setup({"t": "{{ var }}"}) |
| 13 | def test_filter_syntax00(self): |
| 14 | output = self.engine.render_to_string('t', {"var": "\x93 and \x94"}) |
| 15 | self.assertEqual(output, "\x93 and \x94") |
| 16 | |
12 | 17 | @setup({'filter-syntax01': '{{ var|upper }}'}) |
13 | 18 | def test_filter_syntax01(self): |
14 | 19 | """ |