From b1fb3c244cf1f6feeee43661cd72efc595530290 Mon Sep 17 00:00:00 2001 From: markt Date: Tue, 28 Jun 2011 13:57:17 +0000 Subject: [PATCH] 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@1140624 13f79535-47bb-0310-9956-ffa450edef68 --- test/org/apache/catalina/core/TestSwallowAbortedUploads.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/catalina/core/TestSwallowAbortedUploads.java b/test/org/apache/catalina/core/TestSwallowAbortedUploads.java index 8ea33fbc4..d56bf6197 100644 --- a/test/org/apache/catalina/core/TestSwallowAbortedUploads.java +++ b/test/org/apache/catalina/core/TestSwallowAbortedUploads.java @@ -213,7 +213,7 @@ public class TestSwallowAbortedUploads extends TomcatBaseTest { private static final String URI = "/uploadAborted"; private static final String servletName = "uploadAborted"; private static final int limitSize = 100; - private static final int hugeSize = 200000; + private static final int hugeSize = 400000; private boolean init; private Context context; -- 2.11.0