Skip to content

Commit

Permalink
Per #2979, insert a newline in unit.py output between the env vars an…
Browse files Browse the repository at this point in the history
…d the command.
  • Loading branch information
JohnHalleyGotway committed Sep 25, 2024
1 parent 719ad4d commit 1a07b29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/test_unit/python/unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def unit(test_xml, file_log=None, cmd_only=False, noexit=False, memchk=False, ca

# # on failure, print the problematic test and exit, if requested
if not (ret_ok and out_ok):
logger.info("\n".join(set_envs) + cmd + cmd_outs + "\n".join(unset_envs) + "\n")
logger.info("\n".join(set_envs) + "\n" + cmd + cmd_outs + "\n".join(unset_envs) + "\n")
if not noexit:
sys.exit(1)

Expand Down

0 comments on commit 1a07b29

Please sign in to comment.