diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-03-17 14:38:36 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-03-17 13:39:47 +0000 |
commit | ec2963ab584c8c80f53178adb364a5f46cd95d95 (patch) | |
tree | 45de106f23163aac5983dd408fc058b062cd0e96 /resources/tools/presentation/generator_tables.py | |
parent | 2896038b90897258842a5b8fe9582d84fe532644 (diff) |
Report: Add 2n-skx avf and MRR tests
Change-Id: I09542db32bc7cf998b0aac00b109b767d083a34e
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-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 2a366b94db..ef2f3c5fb5 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -448,7 +448,6 @@ def _tpc_sort_table(table): :rtype: list """ - tbl_new = list() tbl_see = list() tbl_delta = list() @@ -469,7 +468,8 @@ def _tpc_sort_table(table): # Put the tables together: table = list() - table.extend(tbl_new) + # We do not want "New in CSIT": + # table.extend(tbl_new) table.extend(tbl_see) table.extend(tbl_delta) |