Skip to content

Commit 202d628

Browse files
committed
use 'OK' instead of 'PASS' to keep output in sanity check more consistent (with result of sanity check commands, for example)
1 parent 79f1f80 commit 202d628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/framework/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def sanity_check_step(self):
319319

320320
msg = f"Extension sanity check command '{cmd}': "
321321
if cmd_res.exit_code == EasyBuildExit.SUCCESS:
322-
trace_msg(msg + 'PASS')
322+
trace_msg(msg + 'OK')
323323
else:
324324
trace_msg(msg + 'FAIL')
325325
if stdin:

0 commit comments

Comments
 (0)