Improve test message to avoid duplicate log output
diff --git a/xmltest.cpp b/xmltest.cpp
index 90fdd8c..680c379 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -1957,7 +1957,7 @@
 	    doc.Parse(xml1);

 	    XMLTest("Test that the second declaration is allowed", false, doc.Error() );

 	    doc.Parse(xml2);

-	    XMLTest("Test that declaration after a child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() );

+	    XMLTest("Test that declaration after self-closed child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() );

 	    doc.Parse(xml3);

 	    XMLTest("Test that declaration after a child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() );

 	    doc.Parse(xml4);