Commit a5d9046b authored by Matthias Vallentin's avatar Matthias Vallentin Committed by Marian Triebe

Add missing newline

parent 3e53f532
......@@ -157,13 +157,13 @@ bool check(test* parent, const char *file, size_t line,
out << term::green << "** "
<< term::blue << file << term::yellow << ":"
<< term::blue << line << fill(line) << term::reset
<< expr;
<< expr << '\n';
parent->pass();
} else {
out << term::red << "!! "
<< term::blue << file << term::yellow << ":"
<< term::blue << line << fill(line) << term::reset
<< expr;
<< expr << '\n';
parent->fail(should_fail);
}
return result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment