Merge branch 'super-traces'

This commit is contained in:
John Bintz 2011-09-20 16:10:30 -04:00
commit 04e2bc5f22

View File

@ -87,8 +87,10 @@ void ConsoleOutput::logSpecResult(const QString &result) {
red();
while (linesIterator.hasNext()) {
*outputIO << " " << qPrintable(linesIterator.next()) << std::endl;
yellow();
QString line = linesIterator.next();
if (!linesIterator.hasNext())
yellow();
*outputIO << " " << qPrintable(line) << std::endl;
}
clear();