diff --git a/projects/SelfTest/Baselines/console.std.approved.txt b/projects/SelfTest/Baselines/console.std.approved.txt index 54d3ee6f..422f0fc2 100644 --- a/projects/SelfTest/Baselines/console.std.approved.txt +++ b/projects/SelfTest/Baselines/console.std.approved.txt @@ -569,8 +569,8 @@ with expansion: with message: Testing if fib[7] (21) is even -Some information -An error +A string sent directly to stdout +A string sent directly to stderr ------------------------------------------------------------------------------- checkedIf, failing ------------------------------------------------------------------------------- diff --git a/projects/SelfTest/Baselines/console.sw.approved.txt b/projects/SelfTest/Baselines/console.sw.approved.txt index e0c15c68..792004c9 100644 --- a/projects/SelfTest/Baselines/console.sw.approved.txt +++ b/projects/SelfTest/Baselines/console.sw.approved.txt @@ -3014,8 +3014,8 @@ with expansion: with message: Testing if fib[7] (21) is even -Some information -An error +A string sent directly to stdout +A string sent directly to stderr ------------------------------------------------------------------------------- Sends stuff to stdout and stderr ------------------------------------------------------------------------------- diff --git a/projects/SelfTest/Baselines/junit.sw.approved.txt b/projects/SelfTest/Baselines/junit.sw.approved.txt index b105e986..5dd37bd7 100644 --- a/projects/SelfTest/Baselines/junit.sw.approved.txt +++ b/projects/SelfTest/Baselines/junit.sw.approved.txt @@ -351,10 +351,10 @@ MiscTests.cpp: -Some information +A string sent directly to stdout -An error +A string sent directly to stderr @@ -550,12 +550,12 @@ TrickyTests.cpp: Message from section one Message from section two -Some information +A string sent directly to stdout hello hello -An error +A string sent directly to stderr diff --git a/projects/SelfTest/MiscTests.cpp b/projects/SelfTest/MiscTests.cpp index 33e84bc2..efcd4582 100644 --- a/projects/SelfTest/MiscTests.cpp +++ b/projects/SelfTest/MiscTests.cpp @@ -113,9 +113,9 @@ TEST_CASE( "looped tests", "[.][failing]" ) TEST_CASE( "Sends stuff to stdout and stderr", "" ) { - std::cout << "Some information" << std::endl; + std::cout << "A string sent directly to stdout" << std::endl; - std::cerr << "An error" << std::endl; + std::cerr << "A string sent directly to stderr" << std::endl; } inline const char* makeString( bool makeNull )