Browse Source

try again with a value that already handles dirsep

master
Matt Benson 3 years ago
parent
commit
0db467a379
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/tests/antunit/taskdefs/pathconvert-test.xml

+ 2
- 2
src/tests/antunit/taskdefs/pathconvert-test.xml View File

@@ -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>


Loading…
Cancel
Save