This is an automated email from the ASF dual-hosted git repository. mbenson pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ant.git
The following commit(s) were added to refs/heads/master by this push: new 0db467a try again with a value that already handles dirsep 0db467a is described below commit 0db467a379916a3d1fcf6956a0fedaf94cc25be3 Author: Matt Benson <mben...@apache.org> AuthorDate: Wed Feb 16 15:27:09 2022 -0600 try again with a value that already handles dirsep --- src/tests/antunit/taskdefs/pathconvert-test.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/antunit/taskdefs/pathconvert-test.xml b/src/tests/antunit/taskdefs/pathconvert-test.xml index 8a2f598..02ca110 100644 --- a/src/tests/antunit/taskdefs/pathconvert-test.xml +++ b/src/tests/antunit/taskdefs/pathconvert-test.xml @@ -113,13 +113,13 @@ <target name="testDest"> <au:assertFileDoesntExist file="${output}/destfile" /> <pathconvert dest="${output}/destfile"> - <file file="foo/bar/baz" /> + <file file="${ant.file}" /> </pathconvert> <au:assertFileExists file="${output}/destfile" /> <au:assertTrue> <resourcesmatch astext="true"> <file file="${output}/destfile" /> - <string value="${basedir}/foo/bar/baz" /> + <string value="${ant.file}" /> </resourcesmatch> </au:assertTrue> </target>