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

scalability: runScalabilityTestSuite: Fix typo (str(..)->%str())

parent d094d81d
......@@ -258,8 +258,8 @@ class ScalabilityLauncher(object):
tester_path = self.__argumentNamespace.runner_path
user_number = suite.getUserNumber(current_test_number)
self.log("user_number: %s" str(user_number))
self.log("test_duration: %ss" str(test_duration))
self.log("user_number: %s" %str(user_number))
self.log("test_duration: %ss" %str(test_duration))
tester_process = subprocess.Popen([tester_path,
self.__argumentNamespace.erp5_url,
......
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