From commits-return-11324-archive-asf-public=cust-asf.ponee.io@poi.apache.org Mon May 7 22:50:35 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 49708180648 for ; Mon, 7 May 2018 22:50:35 +0200 (CEST) Received: (qmail 86356 invoked by uid 500); 7 May 2018 20:50:34 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 86347 invoked by uid 99); 7 May 2018 20:50:34 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 May 2018 20:50:34 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 9C4033A00C6 for ; Mon, 7 May 2018 20:50:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1831127 - /poi/trunk/src/testcases/org/apache/poi/util/TestIOUtils.java Date: Mon, 07 May 2018 20:50:33 -0000 To: commits@poi.apache.org From: kiwiwings@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20180507205033.9C4033A00C6@svn01-us-west.apache.org> Author: kiwiwings Date: Mon May 7 20:50:32 2018 New Revision: 1831127 URL: http://svn.apache.org/viewvc?rev=1831127&view=rev Log: Random test value/file length resulted in occasionally failures Modified: poi/trunk/src/testcases/org/apache/poi/util/TestIOUtils.java Modified: poi/trunk/src/testcases/org/apache/poi/util/TestIOUtils.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/util/TestIOUtils.java?rev=1831127&r1=1831126&r2=1831127&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/util/TestIOUtils.java (original) +++ poi/trunk/src/testcases/org/apache/poi/util/TestIOUtils.java Mon May 7 20:50:32 2018 @@ -44,7 +44,7 @@ import org.junit.Test; public final class TestIOUtils { static File TMP; - static final long LENGTH = new Random().nextInt(10000); + static final long LENGTH = 300+new Random().nextInt(9000); @BeforeClass public static void setUp() throws IOException { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org