this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Attempt to fix boostxml

+2 -1
+2 -1
tests/boostxml.cpp
··· 5 5 m_xml << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; 6 6 m_xml << "<TestLog>\n"; 7 7 m_xml << "\t<TestSuite name=\"Darling\">\n"; 8 + m_xml << "\t<TestSuite name=\"tests\">\n"; 8 9 } 9 10 10 11 void boostxml::addOK(const std::string& path, int time) ··· 26 27 27 28 std::string boostxml::str() 28 29 { 29 - m_xml << "\t</TestSuite>\n</TestLog>\n"; 30 + m_xml << "\t</TestSuite></TestSuite>\n</TestLog>\n"; 30 31 return m_xml.str(); 31 32 } 32 33