Merge pull request #705 from hmich/xml-reporter-trim

Do not trim test case names in the XML reporter.
This commit is contained in:
Phil Nash 2016-09-22 17:28:46 +01:00 committed by GitHub
commit f5d2b2dce8
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace Catch {
virtual void testCaseStarting( TestCaseInfo const& testInfo ) CATCH_OVERRIDE {
StreamingReporterBase::testCaseStarting(testInfo);
m_xml.startElement( "TestCase" ).writeAttribute( "name", trim( testInfo.name ) );
m_xml.startElement( "TestCase" ).writeAttribute( "name", testInfo.name );
if ( m_config->showDurations() == ShowDurations::Always )
m_testCaseTimer.start();