aboutsummaryrefslogtreecommitdiff
path: root/crosperf/results_report.py
diff options
context:
space:
mode:
Diffstat (limited to 'crosperf/results_report.py')
-rw-r--r--crosperf/results_report.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/crosperf/results_report.py b/crosperf/results_report.py
index 61c67d5b..c56e25ea 100644
--- a/crosperf/results_report.py
+++ b/crosperf/results_report.py
@@ -1,6 +1,8 @@
#!/usr/bin/python
-# Copyright 2011 Google Inc. All Rights Reserved.
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
from utils.tabulator import *
@@ -479,8 +481,8 @@ pre {
for i in range(2, len(data_table)):
cur_row_data = data_table[i]
- autotest_key = cur_row_data[0].string_value
- title = "{0}: {1}".format(item, autotest_key.replace("/", ""))
+ test_key = cur_row_data[0].string_value
+ title = "{0}: {1}".format(item, test_key.replace("/", ""))
chart = ColumnChart(title, 300, 200)
chart.AddColumn("Label", "string")
chart.AddColumn("Average", "number")