diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-04-26 18:10:17 +0000 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-04-26 18:12:25 +0000 |
commit | 5d040b65766fa5d7d6ad111def619abb8c878b87 (patch) | |
tree | a3d04c54a906f629ce8deb5113e8c64363fb573e /resources/tools/presentation | |
parent | e7f9cb1bc6f96ca79fdba328fd14ce197e28c7a7 (diff) |
Report: Add historical data to performance changes table
Change-Id: Ia1e224ecade79c54b373ba3e8ac53c21c054f648
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index f86bc1a79f..46aa71ca48 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -468,8 +468,8 @@ def table_performance_comparison(table, input_data): item.extend([None, None]) else: item.extend([None, None]) - if item[-5] is not None and item[-3] is not None and item[-5] != 0: - item.append(int(relative_change(float(item[-5]), float(item[-3])))) + if item[-4] is not None and item[-2] is not None and item[-4] != 0: + item.append(int(relative_change(float(item[-4]), float(item[-2])))) if len(item) == len(header): tbl_lst.append(item) |