Commit b6bab81e authored by Benjamin Blanc's avatar Benjamin Blanc

scalability: runScalabilityTestSuite: Fix typo

parent 4ad769b6
...@@ -140,7 +140,7 @@ class ScalabilityLauncher(object): ...@@ -140,7 +140,7 @@ class ScalabilityLauncher(object):
"%s*.csv" %LOG_FILE_PREFIX) "%s*.csv" %LOG_FILE_PREFIX)
def cleanUplogAndCsv(): def cleanUplogAndCsv():
files_to_delete = glob.glob(os.path.join(path, "%s*.log" %LOG_FILE_PREFIX)) files_to_delete = glob.glob(os.path.join(path, "%s*.log" %LOG_FILE_PREFIX))\
+ glob.glob(os.path.join(path, "%s*.csv" %LOG_FILE_PREFIX)) + glob.glob(os.path.join(path, "%s*.csv" %LOG_FILE_PREFIX))
for file_path in files_to_delete: for file_path in files_to_delete:
os.remove(file_path) os.remove(file_path)
......
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