You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2013/01/06 16:29:20 UTC

svn commit: r1429540 - /webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/builder/TestRootPartStreaming.java

Author: veithen
Date: Sun Jan  6 15:29:20 2013
New Revision: 1429540

URL: http://svn.apache.org/viewvc?rev=1429540&view=rev
Log:
Avoid test failure when running with a parser that has a large input buffer (such as XLXP 1 which appears to use 64kB).

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/builder/TestRootPartStreaming.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/builder/TestRootPartStreaming.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/builder/TestRootPartStreaming.java?rev=1429540&r1=1429539&r2=1429540&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/builder/TestRootPartStreaming.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/builder/TestRootPartStreaming.java Sun Jan  6 15:29:20 2013
@@ -49,7 +49,7 @@ public class TestRootPartStreaming exten
         
         // Programmatically create the message
         OMElement orgRoot = factory.createOMElement("root", null);
-        for (int i=0; i<1000; i++) {
+        for (int i=0; i<10000; i++) {
             factory.createOMElement("child", null, orgRoot).setText("Some text content");
         }