Skip original_name from flavor info

In the new SDK we are going to add additional parameter to the flavor
which make no use for OSC. Exclude it explicitly since it also cause
failing tests.

Change-Id: Ie35e60498cf18f05c878611df6f88607a04b1870
This commit is contained in:
Artem Goncharov 2022-01-14 17:37:59 +01:00
parent 0a887a4786
commit f461af0ac8
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def _get_flavor_columns(item):
'is_public': 'os-flavor-access:is_public'
}
hidden_columns = ['links', 'location']
hidden_columns = ['links', 'location', 'original_name']
return utils.get_osc_show_columns_for_sdk_resource(
item, column_map, hidden_columns)