Use a more appropriate output file name.

This commit is contained in:
Dave Page 2017-04-06 09:34:19 +01:00
parent dd23f71478
commit a412e3226f

View File

@ -385,7 +385,7 @@ if __name__ == '__main__':
test_result_json.update(temp_dict_for_server)
# Dump test result into json file
json_file_path = CURRENT_PATH + "/tests_result.json"
json_file_path = CURRENT_PATH + "/test_result.json"
with open(json_file_path, 'w') as outfile:
json.dump(test_result_json, outfile, indent=2)