summaryrefslogtreecommitdiff
path: root/tests/test_scaffolds/test_template.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_scaffolds/test_template.py')
-rw-r--r--tests/test_scaffolds/test_template.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_scaffolds/test_template.py b/tests/test_scaffolds/test_template.py
index d9a2dfadb..fc6b9f371 100644
--- a/tests/test_scaffolds/test_template.py
+++ b/tests/test_scaffolds/test_template.py
@@ -46,23 +46,23 @@ class TestTemplate(unittest.TestCase):
def test_render_template_with_escaped_double_braces(self):
inst = self._makeOne()
result = inst.render_template(
- '{{a}} {{b}} \{\{a\}\} \{\{c\}\}', {'a': '1', 'b': '2'}
+ '{{a}} {{b}} \\{\\{a\\}\\} \\{\\{c\\}\\}', {'a': '1', 'b': '2'}
)
self.assertEqual(result, bytes_('1 2 {{a}} {{c}}'))
def test_render_template_with_breaking_escaped_braces(self):
inst = self._makeOne()
result = inst.render_template(
- '{{a}} {{b}} \{\{a\} \{b\}\}', {'a': '1', 'b': '2'}
+ '{{a}} {{b}} \\{\\{a\\} \\{b\\}\\}', {'a': '1', 'b': '2'}
)
- self.assertEqual(result, bytes_('1 2 \{\{a\} \{b\}\}'))
+ self.assertEqual(result, bytes_('1 2 \\{\\{a\\} \\{b\\}\\}'))
def test_render_template_with_escaped_single_braces(self):
inst = self._makeOne()
result = inst.render_template(
- '{{a}} {{b}} \{a\} \{b', {'a': '1', 'b': '2'}
+ '{{a}} {{b}} \\{a\\} \\{b', {'a': '1', 'b': '2'}
)
- self.assertEqual(result, bytes_('1 2 \{a\} \{b'))
+ self.assertEqual(result, bytes_('1 2 \\{a\\} \\{b'))
def test_module_dir(self):
import sys