Commit 1e8b2e9a authored by Carlos Ramos Carreño's avatar Carlos Ramos Carreño

Fix tests for erp5_officejs in Python 2.

parent 72155b6c
...@@ -8,6 +8,8 @@ Redirect to domain specified as layout property on website ...@@ -8,6 +8,8 @@ Redirect to domain specified as layout property on website
import binascii import binascii
import base64 import base64
from Products.ERP5Type.Utils import bytes2str, str2bytes
import six
result_dict = {"error":"url missing definition view path"} result_dict = {"error":"url missing definition view path"}
base_64 = False base_64 = False
...@@ -19,8 +21,9 @@ except KeyError: ...@@ -19,8 +21,9 @@ except KeyError:
return result_dict return result_dict
try: try:
encoded = name.replace("definition_view/", "", 1).encode() encoded = str2bytes(name.replace("definition_view/", "", 1))
name = base64.decodebytes(encoded).decode() decode_method = base64.decodebytes if six.PY3 else base64.decodestring
name = bytes2str(decode_method(encoded))
base_64 = True base_64 = True
except binascii.Error: except binascii.Error:
pass pass
......
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