Skip to content
Snippets Groups Projects
Commit 77fbc1ca authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix some typos

parent 6937c8f3
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ def _flatten_result_inplace(scenario_result):
scenario_result['serverCores'] = json.dumps(scenario_result['serverCores'])
scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess'])
scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess'])
scenario_result['requestResults'] = json.dumps(scenario_result['requestResults'])
scenario_result['requestResults'] = json.dumps(scenario_result.get('requestResults', []))
def _populate_metadata_inplace(scenario_result):
......
......@@ -210,7 +210,7 @@
"mode": "NULLABLE"
},
{
"name": "request_results",
"name": "requestResults",
"type": "STRING",
"mode": "NULLABLE"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment