Bug 1060523 - Omit extra newlines when logging exception messages in moztest. r=jgraham

This commit is contained in:
Chris Manchester 2014-08-29 14:43:28 -04:00
Родитель a6e2314876
Коммит 10861ed968
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -60,8 +60,8 @@ class StructuredTestResult(TextTestResult):
exc_msg = "".join(traceback.format_exception_only(exc_ty, val))
if self.buffer:
output_msg = "\n".join([sys.stdout.getvalue(), sys.stderr.getvalue()])
return "\n".join([exc_msg, output_msg])
return exc_msg
return "".join([exc_msg, output_msg])
return exc_msg.rstrip()
def _extract_stacktrace(self, err, test):
# Format an exception stack in the style of unittest's _exc_info_to_string