Author: veithen
Date: Tue Jun 16 21:14:55 2015
New Revision: 1685906
URL: http://svn.apache.org/r1685906
Log:
Disable a test case that fails because of a bug in DOOM. This will be fixed by
merging the attrs-aspects branch.
Modified:
webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/OMImplementationTest.java
Modified:
webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/OMImplementationTest.java
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/OMImplementationTest.java?rev=1685906&r1=1685905&r2=1685906&view=diff
==============================================================================
---
webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/OMImplementationTest.java
(original)
+++
webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/OMImplementationTest.java
Tue Jun 16 21:14:55 2015
@@ -28,6 +28,7 @@ import org.apache.axiom.ts.om.container.
import org.apache.axiom.ts.om.container.TestSerialize;
import org.apache.axiom.ts.om.document.TestClone;
import org.apache.axiom.ts.om.document.TestDigest;
+import org.apache.axiom.ts.om.element.TestGetAllDeclaredNamespacesRemove;
import org.apache.axiom.ts.om.element.TestGetChildrenWithName4;
import
org.apache.axiom.ts.om.element.TestSerializationWithTwoNonBuiltOMElements;
import org.apache.axiom.ts.om.element.sr.TestClose;
@@ -67,6 +68,9 @@ public class OMImplementationTest extend
// TODO: test issue: DOOM doesn't preserve attribute order
builder.exclude(TestGetXMLStreamReader.class, "(&(file=large.xml))");
+ // TODO: will be fixed by merging the attrs-aspects branch
+ builder.exclude(TestGetAllDeclaredNamespacesRemove.class);
+
return builder.build();
}
}