Revert "Fixed issue #101, missing space in end of section message"

This reverts commit 1ad971ea2b.
This commit is contained in:
Martin Moene 2012-07-22 09:14:19 +02:00
parent 14f1c094f4
commit a0c496fefc

View File

@ -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;
} }