Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 38877 invoked from network); 2 Jul 2006 19:41:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Jul 2006 19:41:42 -0000 Received: (qmail 86112 invoked by uid 500); 2 Jul 2006 19:41:40 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 86017 invoked by uid 500); 2 Jul 2006 19:41:40 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 86006 invoked by uid 500); 2 Jul 2006 19:41:40 -0000 Received: (qmail 86003 invoked by uid 99); 2 Jul 2006 19:41:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Jul 2006 12:41:40 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Jul 2006 12:41:39 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 860CB1A983A; Sun, 2 Jul 2006 12:41:19 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r418640 - /jakarta/commons/proper/io/trunk/src/test/org/apache/commons/io/PackageTestSuite.java Date: Sun, 02 Jul 2006 19:41:19 -0000 To: commons-cvs@jakarta.apache.org From: scolebourne@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060702194119.860CB1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: scolebourne Date: Sun Jul 2 12:41:18 2006 New Revision: 418640 URL: http://svn.apache.org/viewvc?rev=418640&view=rev Log: Ensure that file filter package tests arent run twice Modified: jakarta/commons/proper/io/trunk/src/test/org/apache/commons/io/PackageTestSuite.java Modified: jakarta/commons/proper/io/trunk/src/test/org/apache/commons/io/PackageTestSuite.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/io/trunk/src/test/org/apache/commons/io/PackageTestSuite.java?rev=418640&r1=418639&r2=418640&view=diff ============================================================================== --- jakarta/commons/proper/io/trunk/src/test/org/apache/commons/io/PackageTestSuite.java (original) +++ jakarta/commons/proper/io/trunk/src/test/org/apache/commons/io/PackageTestSuite.java Sun Jul 2 12:41:18 2006 @@ -19,8 +19,6 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; -import org.apache.commons.io.filefilter.FileFilterTestCase; - /** * A basic test suite that tests all the IO package. * @@ -46,7 +44,6 @@ suite.addTest(new TestSuite(FileUtilsListFilesTestCase.class)); suite.addTest(new TestSuite(FileUtilsCleanDirectoryTestCase.class)); suite.addTest(new TestSuite(FileUtilsTestCase.class)); - suite.addTest(new TestSuite(FileFilterTestCase.class)); suite.addTest(new TestSuite(HexDumpTest.class)); suite.addTest(new TestSuite(IOCaseTestCase.class)); suite.addTest(new TestSuite(IOUtilsCopyTestCase.class)); --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org