Bugfix/tests: add slash to test log message (#37874)

This commit is contained in:
Tamara Dahlgren 2023-05-29 01:36:36 -07:00 committed by Massimiliano Culpo
parent c93b8bceb8
commit d27debd940

View File

@ -1374,7 +1374,7 @@ def long_message(self):
test_log = join_path(os.path.dirname(self.log_name), spack_install_test_log)
if os.path.isfile(test_log):
out.write("\nSee test log for details:\n")
out.write(" {0}n".format(test_log))
out.write(" {0}\n".format(test_log))
return out.getvalue()