Commit b663f40b authored by Benjamin Blanc's avatar Benjamin Blanc

scalability:runScalabilityTestSuite: Modify _returnFileContentList to join lines

parent 638d16ef
...@@ -127,7 +127,7 @@ class ScalabilityLauncher(object): ...@@ -127,7 +127,7 @@ class ScalabilityLauncher(object):
content_list = [] content_list = []
for file_path in file_path_list: for file_path in file_path_list:
opened_file = open(file_path, 'r') opened_file = open(file_path, 'r')
content_list.append(opened_file.readlines()) content_list.append(''.join(opened_file.readlines()))
opened_file.close() opened_file.close()
return content_list return content_list
......
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