From 25737fd6a412f4fe9b780305c0260bb6e938be1b Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Thu, 25 Oct 2018 19:34:38 -0500 Subject: fix new lint errors from flake8 --- tests/test_scaffolds/test_template.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/test_scaffolds') 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 -- cgit v1.2.3