mirror of
https://github.com/catchorg/Catch2.git
synced 2025-04-18 23:54:47 +02:00
Fixed issue #101, missing space in end of section message
This commit is contained in:
parent
02006d85d7
commit
1ad971ea2b
@ -155,7 +155,7 @@ namespace Catch {
|
|||||||
else {
|
else {
|
||||||
TextColour colour( TextColour::ResultSuccess );
|
TextColour colour( TextColour::ResultSuccess );
|
||||||
m_config.stream() << ( assertions.passed > 1 ? "All " : "" )
|
m_config.stream() << ( assertions.passed > 1 ? "All " : "" )
|
||||||
<< pluralise( assertions.passed, "assertion" ) << "passed" ;
|
<< pluralise( assertions.passed, "assertion" ) << " passed" ;
|
||||||
}
|
}
|
||||||
m_config.stream() << "]\n" << std::endl;
|
m_config.stream() << "]\n" << std::endl;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user