From 0bc42c56590b77d2901a54b8f4507985f73eb8ff Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 12 Apr 2011 07:39:45 +0100 Subject: [PATCH] change root element of xml reporter to Catch --- catch_reporter_xml.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catch_reporter_xml.hpp b/catch_reporter_xml.hpp index bd663daf..06639a15 100644 --- a/catch_reporter_xml.hpp +++ b/catch_reporter_xml.hpp @@ -45,7 +45,7 @@ namespace Catch () { m_xml = XmlWriter( m_config.stream() ); - m_xml.startElement( "AllTests" ); + m_xml.startElement( "Catch" ); } ///////////////////////////////////////////////////////////////////////////