Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 931CD10F41 for ; Thu, 8 Aug 2013 01:31:07 +0000 (UTC) Received: (qmail 16796 invoked by uid 500); 8 Aug 2013 01:31:07 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 16746 invoked by uid 500); 8 Aug 2013 01:31:07 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 16737 invoked by uid 99); 8 Aug 2013 01:31:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Aug 2013 01:31:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Aug 2013 01:31:06 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4031A23889ED; Thu, 8 Aug 2013 01:30:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1511553 - in /commons/proper/vfs/trunk: core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java src/changes/changes.xml Date: Thu, 08 Aug 2013 01:30:46 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130808013046.4031A23889ED@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Thu Aug 8 01:30:45 2013 New Revision: 1511553 URL: http://svn.apache.org/r1511553 Log: [VFS-482] Wrong assertion messages in RAM provider test case. Modified: commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java commons/proper/vfs/trunk/src/changes/changes.xml Modified: commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java?rev=1511553&r1=1511552&r2=1511553&view=diff ============================================================================== --- commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java (original) +++ commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java Thu Aug 8 01:30:45 2013 @@ -229,8 +229,8 @@ public class CustomRamProviderTest // Small FS final FileObject fo3 = manager.resolveFile("ram:/fo3", smallSized); final FileObject fo4 = manager.resolveFile("ram:/", smallSized); - assertTrue("Both files should exist in different fs instances.", fo3.getFileSystem() == fo4.getFileSystem()); - assertTrue("These file shouldn't be in the same file system.", fo1.getFileSystem() != fo3.getFileSystem()); + assertTrue("Both files should exist in the same FileSystem instance.", fo3.getFileSystem() == fo4.getFileSystem()); + assertTrue("Both files should exist in different FileSystem instance.", fo1.getFileSystem() != fo3.getFileSystem()); fo3.createFile(); try @@ -240,7 +240,7 @@ public class CustomRamProviderTest os.close(); } catch (final FileSystemException e) { - fail("It shouldn't save such a small file"); + fail("Test should be able to save such a small file"); } try Modified: commons/proper/vfs/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/changes/changes.xml?rev=1511553&r1=1511552&r2=1511553&view=diff ============================================================================== --- commons/proper/vfs/trunk/src/changes/changes.xml (original) +++ commons/proper/vfs/trunk/src/changes/changes.xml Thu Aug 8 01:30:45 2013 @@ -26,6 +26,9 @@ + + Wrong assertion messages in RAM provider test case. + Update Apache Commons Logging to 1.1.3 from 1.1.2.