From: markt Date: Tue, 28 Jun 2011 14:37:59 +0000 (+0000) Subject: Increase size of file the test tries to send since there is enough buffering on my... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=631445eda1882b0857201d6e340febca028fd61f;p=tomcat7.0 Increase size of file the test tries to send since there is enough buffering on my system that 200k can hide in the buffers triggering a test failure (the limit works - it just fails in a way the test doesn't expect) git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1140645 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/org/apache/catalina/core/TestSwallowAbortedUploads.java b/test/org/apache/catalina/core/TestSwallowAbortedUploads.java index d56bf6197..c12a1127f 100644 --- a/test/org/apache/catalina/core/TestSwallowAbortedUploads.java +++ b/test/org/apache/catalina/core/TestSwallowAbortedUploads.java @@ -333,7 +333,7 @@ public class TestSwallowAbortedUploads extends TomcatBaseTest { private static final String URI = "/uploadAborted"; private static final String servletName = "uploadAborted"; - private static final int hugeSize = 200000; + private static final int hugeSize = 400000; private boolean init; private Context context;