Author: olamy
Date: Tue Jun 28 12:41:08 2011
New Revision: 1140573
URL: http://svn.apache.org/viewvc?rev=1140573&view=rev
Log:
try to fix path issue on osx will see if pass on jenkins @asf
Modified:
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3951AbsolutePathsTest.java
Modified:
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3951AbsolutePathsTest.java
URL:
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3951AbsolutePathsTest.java?rev=1140573&r1=1140572&r2=1140573&view=diff
==============================================================================
---
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3951AbsolutePathsTest.java
(original)
+++
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3951AbsolutePathsTest.java
Tue Jun 28 12:41:08 2011
@@ -71,7 +71,7 @@ public class MavenITmng3951AbsolutePaths
Properties props = verifier.loadProperties( "target/path.properties" );
assertEquals( new File( testDir.getCanonicalFile(), "tmp"
).getAbsoluteFile(),
new File( props.getProperty( "fileParams.0" ) ) );
- assertEquals( new File( getRoot( testDir ), "tmp"
).getCanonicalFile().getAbsoluteFile(),
+ assertEquals( new File( getRoot( testDir ).getCanonicalFile(), "tmp"
).getCanonicalFile().getAbsoluteFile(),
new File( props.getProperty( "fileParams.1" ) ) );
assertEquals( new File( repoDir ), new File( props.getProperty(
"stringParams.0" ) ) );
}