Skip to content

Commit 344b6a5

Browse files
committed
Address PR comments
1 parent 07014b8 commit 344b6a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reframe/frontend/printer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ def status(self, status, message='', just=None, level=logging.INFO):
7070
status = color.colorize(status, color.GREEN)
7171

7272
final_msg = f'[ {status} ] '
73-
if status_stripped in ('ABORT', 'OK', 'SKIP', 'FAIL', 'XFAIL',
74-
'XPASS', 'ERROR'):
73+
if status_stripped in {'ABORT', 'OK', 'SKIP', 'FAIL', 'XFAIL',
74+
'XPASS', 'ERROR'}:
7575
if self._progress_count < self._progress_total:
7676
self._progress_count += 1
7777

0 commit comments

Comments
 (0)