summaryrefslogtreecommitdiff
path: root/pecan/tests/test_templating.py
diff options
context:
space:
mode:
Diffstat (limited to 'pecan/tests/test_templating.py')
-rw-r--r--pecan/tests/test_templating.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/pecan/tests/test_templating.py b/pecan/tests/test_templating.py
index 90ef4fb..5fffb0c 100644
--- a/pecan/tests/test_templating.py
+++ b/pecan/tests/test_templating.py
@@ -1,8 +1,10 @@
+import tempfile
+
+from six import b as b_
+
from pecan.templating import RendererFactory, format_line_context
from pecan.tests import PecanTestCase
-import tempfile
-
class TestTemplate(PecanTestCase):
def setUp(self):
@@ -42,7 +44,7 @@ class TestTemplateLineFormat(PecanTestCase):
def test_format_line_context(self):
for i in range(11):
- self.f.write('Testing Line %d\n' % i)
+ self.f.write(b_('Testing Line %d\n' % i))
self.f.flush()
assert format_line_context(self.f.name, 0).count('Testing Line') == 10