Fix duplicate feature render bug

Features were being rendered for every implementation that existed.
This now properly renders features once and their implementation status.

Co-Authored-by: Eric Fried <efried@us.ibm.com>
Change-Id: I5f527c9efe893aaa3ca8c2de4739d883902ec46d
This commit is contained in:
Mike Perez
2018-02-13 16:26:52 -08:00
parent 1fd4e08ff6
commit af55919695

View File

@@ -121,9 +121,8 @@ class Matrix(object):
if not option.startswith(DRIVER_PREFIX):
continue
implementation = _process_implementation(section, option,
feature)
features.append(implementation)
_process_implementation(section, option, feature)
features.append(feature)
return features