mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 00:43:07 +02:00
Unit Tests
- Fixed bug in TAP 'diag' output generation, which was missing a newline.
This commit is contained in:
parent
938a33f236
commit
0215e708ad
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ void UnitTest::diag (const std::string& text)
|
|||
{
|
||||
std::string::size_type start = text.find_first_not_of (" \t\n\r\f");
|
||||
std::string::size_type end = text.find_last_not_of (" \t\n\r\f");
|
||||
std::cout << "# " << text.substr (start, end - start + 1);
|
||||
std::cout << "# " << text.substr (start, end - start + 1) << "\n";
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue