You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by gs...@apache.org on 2007/09/12 06:53:04 UTC

svn commit: r574804 - in /incubator/ivy/core/trunk: CHANGES.txt test/java/org/apache/ivy/ant/IvyRetrieveTest.java

Author: gscokart
Date: Tue Sep 11 23:53:03 2007
New Revision: 574804

URL: http://svn.apache.org/viewvc?rev=574804&view=rev
Log:
Fix typo in the unit test making it fail on some platform (IVY-604)

Modified:
    incubator/ivy/core/trunk/CHANGES.txt
    incubator/ivy/core/trunk/test/java/org/apache/ivy/ant/IvyRetrieveTest.java

Modified: incubator/ivy/core/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/CHANGES.txt?rev=574804&r1=574803&r2=574804&view=diff
==============================================================================
--- incubator/ivy/core/trunk/CHANGES.txt (original)
+++ incubator/ivy/core/trunk/CHANGES.txt Tue Sep 11 23:53:03 2007
@@ -54,10 +54,14 @@
 - FIX: NullPointerException whilst resolving transitive dependencies (IVY-590)
 - FIX: cachepath based on a resolve done in a previous build broken (IVY-583)
 - FIX: Resolving dynamic version fails when using multiple patterns if only one pattern find a revision and others don't (IVY-602)
+- FIX: Invalid character in IvyRetrieveTest causing most tests to fail (IVY-604)
 
 - IMPROVEMENT: artifactproperty should not overwrite the existing properties (IVY-587)
 - IMPROVEMENT: Support *(private) and *(public) in the confs parameter of the resolve (IVY-588)
 - IMPROVEMENT: replace * by *(public) when resolving inline (IVY-589)
+
+- REFACTORING: Extract a settings interface for the different engines
+
 
    2.0.0-alpha2-incubating
 =====================================

Modified: incubator/ivy/core/trunk/test/java/org/apache/ivy/ant/IvyRetrieveTest.java
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/test/java/org/apache/ivy/ant/IvyRetrieveTest.java?rev=574804&r1=574803&r2=574804&view=diff
==============================================================================
--- incubator/ivy/core/trunk/test/java/org/apache/ivy/ant/IvyRetrieveTest.java (original)
+++ incubator/ivy/core/trunk/test/java/org/apache/ivy/ant/IvyRetrieveTest.java Tue Sep 11 23:53:03 2007
@@ -33,7 +33,7 @@
             "build/test/lib/[organisation]/[module]/ivy-[revision].xml";
 
     private static final String RETRIEVE_PATTERN = 
-            "µbuild/test/lib/[conf]/[artifact]-[revision].[type]";
+            "build/test/lib/[conf]/[artifact]-[revision].[type]";
 
     private File cache;