Commit 28a06664 authored by Emmy Vouriot's avatar Emmy Vouriot Committed by Jérome Perrin

change bytes to str WIP

parent a2c9c24a
......@@ -31,6 +31,7 @@
from __future__ import print_function
import unittest
import six
from AccessControl.SecurityManagement import newSecurityManager
from Testing import ZopeTestCase
......@@ -128,7 +129,8 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
text_content -- the embedded text content
"""
html_text = html_text.encode('utf-8')
if six.PY2:
html_text = html_text.encode('utf-8')
match_string1 = 'data-gadget-editable="field_%s"' % field_id
match_string2 = 'data-gadget-value="%s"' % html_quote(text_content)
if html_text.find(match_string1) == -1:
......@@ -153,7 +155,8 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
text_content -- the embedded text content
"""
html_text = html_text.encode('utf-8')
if six.PY2:
html_text = html_text.encode('utf-8')
match_string1 = 'data-gadget-editable="field_%s"' % field_id
match_string2 = 'data-gadget-value="%s"' % html_quote(text_content)
if html_text.find(match_string1) == -1:
......@@ -179,7 +182,8 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
document -- the document which content is displayed in
read only mode
"""
html_text = html_text.encode('utf-8')
if six.PY2:
html_text = html_text.encode('utf-8')
match_string1 = "data-gadget-editable="
match_string2 = 'data-gadget-value="%s"' % html_quote(text_content)
if html_text.find(match_string1) != -1:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment