From bc815505f1e2a22c671d6e816aa3466b82126965 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 20 Apr 2016 07:55:59 +0200 Subject: [PATCH] bdd: Output fewer = chars for summary headers Otherwise we have line breaks on Travis CI --- tests/integration/testprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/testprocess.py b/tests/integration/testprocess.py index 2776cf5c1..1e73ddf07 100644 --- a/tests/integration/testprocess.py +++ b/tests/integration/testprocess.py @@ -159,7 +159,7 @@ class Process(QObject): def log_summary(self, text): """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) def _parse_line(self, line):