From: <bo...@us...> - 2008-12-15 12:29:57
|
Revision: 284 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=284&view=rev Author: bodewig Date: 2008-12-15 12:29:52 +0000 (Mon, 15 Dec 2008) Log Message: ----------- make attribzte coparisions more useful Modified Paths: -------------- trunk/xmlunit/src/csharp/XmlDiff.cs Modified: trunk/xmlunit/src/csharp/XmlDiff.cs =================================================================== --- trunk/xmlunit/src/csharp/XmlDiff.cs 2008-12-15 11:29:51 UTC (rev 283) +++ trunk/xmlunit/src/csharp/XmlDiff.cs 2008-12-15 12:29:52 UTC (rev 284) @@ -140,9 +140,8 @@ GetNonSpecialAttributes(testReader); if (controlAttributes.Length != testAttributes.Length) { DifferenceFound(DifferenceType.ELEMENT_NUM_ATTRIBUTES_ID, result); - } else { - CompareAttributes(result, controlAttributes, testAttributes); } + CompareAttributes(result, controlAttributes, testAttributes); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |