You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2008/08/09 08:14:38 UTC

svn commit: r684187 - /geronimo/server/trunk/framework/modules/geronimo-system/src/test/java/org/apache/geronimo/system/configuration/LocalAttributeManagerReadWriteTest.java

Author: gawor
Date: Fri Aug  8 23:14:38 2008
New Revision: 684187

URL: http://svn.apache.org/viewvc?rev=684187&view=rev
Log:
remove empty text nodes before comparing the docs

Modified:
    geronimo/server/trunk/framework/modules/geronimo-system/src/test/java/org/apache/geronimo/system/configuration/LocalAttributeManagerReadWriteTest.java

Modified: geronimo/server/trunk/framework/modules/geronimo-system/src/test/java/org/apache/geronimo/system/configuration/LocalAttributeManagerReadWriteTest.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/modules/geronimo-system/src/test/java/org/apache/geronimo/system/configuration/LocalAttributeManagerReadWriteTest.java?rev=684187&r1=684186&r2=684187&view=diff
==============================================================================
--- geronimo/server/trunk/framework/modules/geronimo-system/src/test/java/org/apache/geronimo/system/configuration/LocalAttributeManagerReadWriteTest.java (original)
+++ geronimo/server/trunk/framework/modules/geronimo-system/src/test/java/org/apache/geronimo/system/configuration/LocalAttributeManagerReadWriteTest.java Fri Aug  8 23:14:38 2008
@@ -273,6 +273,6 @@
         Document expectedDoc = DOMUtils.load(CONFIG);
         Document actualDoc = DOMUtils.load(result);
         
-        DOMUtils.compareNodes(expectedDoc, actualDoc);
+        DOMUtils.compareNodes(expectedDoc, actualDoc, true);
     }
 }