From 4f19705e0925f219cbd6fdc2d2e5525e51c4bfa4 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 23 May 2012 23:59:42 +0100 Subject: [PATCH] Fixed GitHub Issue #90 --- include/reporters/catch_reporter_junit.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/reporters/catch_reporter_junit.hpp b/include/reporters/catch_reporter_junit.hpp index 6a9815de..44e85ede 100644 --- a/include/reporters/catch_reporter_junit.hpp +++ b/include/reporters/catch_reporter_junit.hpp @@ -171,7 +171,7 @@ namespace Catch { } xml.scopedElement( "system-out" ).writeText( trim( m_stdOut.str() ) ); - xml.scopedElement( "system-err" ).writeText( trim( m_stdOut.str() ) ); + xml.scopedElement( "system-err" ).writeText( trim( m_stdErr.str() ) ); } }