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 GitHub
parent 73ad3f729e
commit 77ce4701b9

View File

@@ -1373,7 +1373,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()