Skip to content

Commit 5adaf4f

Browse files
committed
add list
1 parent 211b917 commit 5adaf4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/post_training/test_quantize_conformance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def fixture_report_data(output_dir, run_benchmark_app, pytestconfig):
173173
test_results = OrderedDict(sorted(data.items()))
174174
test_results = [v.get_result_dict() for v in test_results.values()]
175175
# To fill columns of testcases with None if some of them are missing
176-
all_columns = max(test_results, key=len)
176+
all_columns = list(max(test_results, key=len).keys())
177177
filtered_test_results = []
178178
for test_result in test_results:
179179
new_test_result = {}

0 commit comments

Comments
 (0)