You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ve...@apache.org on 2009/08/04 00:21:55 UTC

svn commit: r800594 - in /webservices/commons/trunk/modules/axiom/modules: axiom-api/src/test/resources/xml/ axiom-tests/src/test/java/org/apache/axiom/om/ axiom-tests/src/test/resources/

Author: veithen
Date: Mon Aug  3 22:21:55 2009
New Revision: 800594

URL: http://svn.apache.org/viewvc?rev=800594&view=rev
Log:
Moved web_w_dtd.xml and web_w_dtd2.xml to the correct location (they are not part of the Jaxen test suite); see r700737.

Added:
    webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/resources/web_w_dtd.xml
      - copied unchanged from r799954, webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/resources/xml/web_w_dtd.xml
    webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/resources/web_w_dtd2.xml
      - copied unchanged from r799954, webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/resources/xml/web_w_dtd2.xml
Removed:
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/resources/xml/web_w_dtd.xml
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/resources/xml/web_w_dtd2.xml
Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/OMDTDTest.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/OMDTDTest.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/OMDTDTest.java?rev=800594&r1=800593&r2=800594&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/OMDTDTest.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/om/OMDTDTest.java Mon Aug  3 22:21:55 2009
@@ -81,7 +81,7 @@
         // that intentionally points to a non existing URL. With a network
         // detached reader this should not produce errors.
         
-        InputStream is = getTestResource("xml/web_w_dtd2.xml");
+        InputStream is = getTestResource("web_w_dtd2.xml");
         XMLStreamReader reader = StAXUtils.createNetworkDetachedXMLStreamReader(is);
         StAXOMBuilder builder = new StAXOMBuilder(reader);
         OMElement root = builder.getDocumentElement();