add temporary output for debugging

This commit is contained in:
Thomas Fussell 2016-08-02 00:20:29 -04:00
parent 4f3555e0ae
commit ff401a0843

View File

@ -19,7 +19,7 @@ public:
style_serializer.write_stylesheet(observed);
pugi::xml_document expected;
expected.load(expected_string.c_str());
observed.save(std::cout);
auto comparison = xml_helper::compare_xml(expected.root(), observed.root());
return (bool)comparison;
}