From c8b279e76c42f213d179179f848b88f9acd034a5 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 12 Apr 2011 07:38:23 +0100 Subject: [PATCH] change root element of xml reporter to Catch --- catch_reporter_xml.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/catch_reporter_xml.hpp b/catch_reporter_xml.hpp index 7eb62455..bd663daf 100644 --- a/catch_reporter_xml.hpp +++ b/catch_reporter_xml.hpp @@ -58,6 +58,7 @@ namespace Catch m_xml.scopedElement( "OverallResults" ) .writeAttribute( "successes", succeeded ) .writeAttribute( "failures", failed ); + m_xml.endElement(); } ///////////////////////////////////////////////////////////////////////////