Commit 6db1ff31 authored by Benjamin Blanc's avatar Benjamin Blanc

Test getFooFoo for test_suite_portal in testnode

parent 05724efb
...@@ -75,6 +75,8 @@ def deunicodeData(data): ...@@ -75,6 +75,8 @@ def deunicodeData(data):
new_data[key] = value new_data[key] = value
elif isinstance(data, int): elif isinstance(data, int):
new_data = data new_data = data
elif isinstance(data, str):
new_data = str(data)
return new_data return new_data
...@@ -338,7 +340,7 @@ branch = %(branch)s ...@@ -338,7 +340,7 @@ branch = %(branch)s
##/BLOCK OK ##/BLOCK OK
print self.test_suite_portal.getFooFooFoo() print deunicodeData(self.test_suite_portal.getFooFooFoo())
# TODO : implement this method for each distributor # TODO : implement this method for each distributor
......
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