Skip to content

Commit 568f3b2

Browse files
committed
Fix typo in local variable name
1 parent 17e17f5 commit 568f3b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reframe/frontend/reporting/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,8 +646,8 @@ def _group_testcases(testcases, groups, columns):
646646
@time_function
647647
def _aggregate_perf(grouped_testcases, aggr_fn, cols):
648648
# Update delimiter for joining unique values based on the table format
649-
table_foramt = runtime().get_option('general/0/table_format')
650-
if table_foramt == 'pretty':
649+
table_format = runtime().get_option('general/0/table_format')
650+
if table_format == 'pretty':
651651
delim = '\n'
652652
else:
653653
delim = '|'

0 commit comments

Comments
 (0)