Commit cc1f687f authored by Jérome Perrin's avatar Jérome Perrin

run_my_doc: strip unnecessary whitespace in generated zelenium tests

parent 2ed3c9e0
...@@ -77,7 +77,7 @@ def extractTest(text): ...@@ -77,7 +77,7 @@ def extractTest(text):
testcode += row[0].text testcode += row[0].text
else: else:
testcode += lxml.html.tostring(row) testcode += lxml.html.tostring(row)
return testcode return testcode.strip()
""" """
HTML5 Presentation validador HTML5 Presentation validador
......
...@@ -34,7 +34,7 @@ class TestRunMyDoc(ERP5TypeTestCase): ...@@ -34,7 +34,7 @@ class TestRunMyDoc(ERP5TypeTestCase):
""" """
Basic Test for internal implementation of RunMyDocs Basic Test for internal implementation of RunMyDocs
""" """
maxDiff = None
def getTitle(self): def getTitle(self):
return "Run My Doc" return "Run My Doc"
......
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