This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits 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 83136cf7f fix copy/paste error in newly introduced RecorderBaseDirTest
83136cf7f is described below

commit 83136cf7fc779793bc93da96cfe08e30e662adaf
Author: Jaikiran Pai <[email protected]>
AuthorDate: Sun Jul 26 13:47:09 2026 +0530

    fix copy/paste error in newly introduced RecorderBaseDirTest
---
 src/tests/junit/org/apache/tools/ant/taskdefs/RecorderBaseDirTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/tests/junit/org/apache/tools/ant/taskdefs/RecorderBaseDirTest.java 
b/src/tests/junit/org/apache/tools/ant/taskdefs/RecorderBaseDirTest.java
index f915b5183..6f08bedfd 100644
--- a/src/tests/junit/org/apache/tools/ant/taskdefs/RecorderBaseDirTest.java
+++ b/src/tests/junit/org/apache/tools/ant/taskdefs/RecorderBaseDirTest.java
@@ -75,7 +75,7 @@ public class RecorderBaseDirTest {
         buildRule.executeTarget("basedir-relative");
         final File expected = resolveFile(REC_IN + "rectest1.result");
         // expect the file to be generated in the basedir
-        final File actual = new File(buildRule.getProject().getBaseDir(), 
"recorded-out.txt");
+        final File actual = new File(buildRule.getProject().getBaseDir(), 
"recorded-out-1.txt");
         assertTrue("content mismatch in files \"" + expected + "\" and \"" + 
actual + "\"",
                 FILE_UTILS.contentEquals(expected, actual, true));
     }

Reply via email to