Commit 5d427295 authored by Benjamin Blanc's avatar Benjamin Blanc

erp5_bootstrap: Fix typo

parent cd05c805
...@@ -45,7 +45,7 @@ def waitFor0PendingActivities(): ...@@ -45,7 +45,7 @@ def waitFor0PendingActivities():
def testIfExist(page, unexcepted_word_content="Site Error"): def testIfExist(page, unexcepted_word_content="Site Error"):
zope_connection = getConnection() zope_connection = getConnection()
zope_connection.request('GET', '/%%s/%%s', site_id, page) zope_connection.request('GET', '/%%s/%%s' %%(site_id, page))
result = zope_connection.getresponse() result = zope_connection.getresponse()
return not unexcepted_content in result.read() return not unexcepted_content in result.read()
......
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