Author: bodewig
Date: Thu Sep 4 02:55:46 2008
New Revision: 691954
URL: http://svn.apache.org/viewvc?rev=691954&view=rev
Log:
fix syntax
Modified:
ant/core/trunk/src/tests/antunit/core/dirscanner-symlinks-test.xml
Modified: ant/core/trunk/src/tests/antunit/core/dirscanner-symlinks-test.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/core/dirscanner-symlinks-test.xml?rev=691954&r1=691953&r2=691954&view=diff
==============================================================================
--- ant/core/trunk/src/tests/antunit/core/dirscanner-symlinks-test.xml
(original)
+++ ant/core/trunk/src/tests/antunit/core/dirscanner-symlinks-test.xml Thu Sep
4 02:55:46 2008
@@ -28,20 +28,20 @@
<condition property="unix"><os family="unix"/></condition>
</target>
- <target name="YtestSymlinkToSiblingFollow"
+ <target name="testSymlinkToSiblingFollow"
depends="checkOs, setUp, -sibling"
if="unix">
- <copy todir="${output}" followSymlinks="true">
- <fileset dir="${base}"/>
+ <copy todir="${output}">
+ <fileset dir="${base}" followsymlinks="true"/>
</copy>
<au:assertFileExists file="${output}/B/file.txt"/>
</target>
- <target name="YtestSymlinkToSiblingNoFollow"
+ <target name="testSymlinkToSiblingNoFollow"
depends="checkOs, setUp, -sibling"
if="unix">
- <copy todir="${output}" followSymlinks="false">
- <fileset dir="${base}"/>
+ <copy todir="${output}">
+ <fileset dir="${base}" followsymlinks="false"/>
</copy>
<au:assertFileDoesntExist file="${output}/B/file.txt"/>
</target>