Return-Path: Delivered-To: apmail-incubator-chemistry-commits-archive@minotaur.apache.org Received: (qmail 55834 invoked from network); 26 Feb 2010 20:49:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 Feb 2010 20:49:54 -0000 Received: (qmail 47883 invoked by uid 500); 26 Feb 2010 20:49:54 -0000 Delivered-To: apmail-incubator-chemistry-commits-archive@incubator.apache.org Received: (qmail 47858 invoked by uid 500); 26 Feb 2010 20:49:54 -0000 Mailing-List: contact chemistry-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: chemistry-dev@incubator.apache.org Delivered-To: mailing list chemistry-commits@incubator.apache.org Received: (qmail 47846 invoked by uid 99); 26 Feb 2010 20:49:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Feb 2010 20:49:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Fri, 26 Feb 2010 20:49:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 85E69238890B; Fri, 26 Feb 2010 20:49:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r916814 - /incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/src/test/java/org/apache/opencmis/client/runtime/Fixture.java Date: Fri, 26 Feb 2010 20:49:31 -0000 To: chemistry-commits@incubator.apache.org From: sklevenz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100226204931.85E69238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sklevenz Date: Fri Feb 26 20:49:31 2010 New Revision: 916814 URL: http://svn.apache.org/viewvc?rev=916814&view=rev Log: bug fix in unit test Modified: incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/src/test/java/org/apache/opencmis/client/runtime/Fixture.java Modified: incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/src/test/java/org/apache/opencmis/client/runtime/Fixture.java URL: http://svn.apache.org/viewvc/incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/src/test/java/org/apache/opencmis/client/runtime/Fixture.java?rev=916814&r1=916813&r2=916814&view=diff ============================================================================== --- incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/src/test/java/org/apache/opencmis/client/runtime/Fixture.java (original) +++ incubator/chemistry/trunk/opencmis/opencmis-client/opencmis-client-impl/src/test/java/org/apache/opencmis/client/runtime/Fixture.java Fri Feb 26 20:49:31 2010 @@ -162,7 +162,7 @@ public static void init() { /* get optional path from system properties */ String pathname = System.getProperty(Fixture.CONFIG_PATH); - pathname = (pathname != null) ? pathname.trim() : null; + pathname = (pathname != null) ? pathname.trim() : null; Properties properties = null; Map sessionParameter = null; SessionFactory factory = null;