bdd: Output fewer = chars for summary headers

Otherwise we have line breaks on Travis CI
This commit is contained in:
Florian Bruhin 2016-04-20 07:55:59 +02:00
parent 4520261884
commit bc815505f1

View File

@ -159,7 +159,7 @@ class Process(QObject):
def log_summary(self, text): def log_summary(self, text):
"""Log the given line as summary/title.""" """Log the given line as summary/title."""
text = '\n{line} {text} {line}\n'.format(line='='*50, text=text) text = '\n{line} {text} {line}\n'.format(line='='*30, text=text)
self._log(text) self._log(text)
def _parse_line(self, line): def _parse_line(self, line):