Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 80210 invoked from network); 10 Jan 2008 20:13:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Jan 2008 20:13:19 -0000 Received: (qmail 64473 invoked by uid 500); 10 Jan 2008 20:13:07 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 64397 invoked by uid 500); 10 Jan 2008 20:13: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 64388 invoked by uid 99); 10 Jan 2008 20:13:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jan 2008 12:13:07 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jan 2008 20:12:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A3AC31A9832; Thu, 10 Jan 2008 12:12:57 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r610913 - /commons/proper/configuration/branches/configuration2_experimental/src/test/java/org/apache/commons/configuration/plist/TestXMLPropertyListConfiguration.java Date: Thu, 10 Jan 2008 20:12:57 -0000 To: commits@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080110201257.A3AC31A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: oheger Date: Thu Jan 10 12:12:56 2008 New Revision: 610913 URL: http://svn.apache.org/viewvc?rev=610913&view=rev Log: Adapted test to new location of test resources Modified: commons/proper/configuration/branches/configuration2_experimental/src/test/java/org/apache/commons/configuration/plist/TestXMLPropertyListConfiguration.java Modified: commons/proper/configuration/branches/configuration2_experimental/src/test/java/org/apache/commons/configuration/plist/TestXMLPropertyListConfiguration.java URL: http://svn.apache.org/viewvc/commons/proper/configuration/branches/configuration2_experimental/src/test/java/org/apache/commons/configuration/plist/TestXMLPropertyListConfiguration.java?rev=610913&r1=610912&r2=610913&view=diff ============================================================================== --- commons/proper/configuration/branches/configuration2_experimental/src/test/java/org/apache/commons/configuration/plist/TestXMLPropertyListConfiguration.java (original) +++ commons/proper/configuration/branches/configuration2_experimental/src/test/java/org/apache/commons/configuration/plist/TestXMLPropertyListConfiguration.java Thu Jan 10 12:12:56 2008 @@ -24,6 +24,8 @@ import junitx.framework.ObjectAssert; import junitx.framework.ArrayAssert; import junitx.framework.ListAssert; + +import org.apache.commons.configuration.ConfigurationAssert; import org.apache.commons.configuration.FileConfiguration; import org.apache.commons.configuration.Configuration; import org.apache.commons.configuration.HierarchicalConfiguration; @@ -41,7 +43,7 @@ protected void setUp() throws Exception { config = new XMLPropertyListConfiguration(); - config.setFileName("conf/test.plist.xml"); + config.setFile(ConfigurationAssert.getTestFile("test.plist.xml")); config.load(); }