avoid path fragility

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@413924 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2006-06-13 15:34:19 +00:00
parent f4906ec9cd
commit 95a576491b
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
systemProperty=${user.home}
systemProperty=${java.version}
param=${param}
pom.property=${my.property}

View File

@ -31,7 +31,7 @@ protected void setUp()
public void testSystemPropertyInterpolation()
throws IOException
{
assertEquals( "System property", System.getProperty( "user.home" ), properties.getProperty( "systemProperty" ) );
assertEquals( "System property", System.getProperty( "java.version" ), properties.getProperty( "systemProperty" ) );
}
public void testParameterInterpolation()