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

emilles pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 14e9f88b6a GROOVY-11607: fix test case
14e9f88b6a is described below

commit 14e9f88b6aab7f80978249747e60245e0f6eea3a
Author: Eric Milles <[email protected]>
AuthorDate: Sat Apr 12 10:48:54 2025 -0500

    GROOVY-11607: fix test case
---
 .../src/test-resources/org/codehaus/groovy/ant/GroovycTest.xml     | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git 
a/subprojects/groovy-ant/src/test-resources/org/codehaus/groovy/ant/GroovycTest.xml
 
b/subprojects/groovy-ant/src/test-resources/org/codehaus/groovy/ant/GroovycTest.xml
index 890a66c279..7d5f41d017 100644
--- 
a/subprojects/groovy-ant/src/test-resources/org/codehaus/groovy/ant/GroovycTest.xml
+++ 
b/subprojects/groovy-ant/src/test-resources/org/codehaus/groovy/ant/GroovycTest.xml
@@ -189,10 +189,9 @@
     <!-- GROOVY-11607 -->
     <target name="plainForkedCompilation_NestingSrcElementCheck">
         <groovyc destdir="${destPath}" fork="true">
-            <src path="${srcPath}">
-                <include name="GroovycTest*.*"/>
-                <exclude name="GroovycTest2.java"/>
-            </src>
+            <src path="${srcPath}"/>
+            <include name="GroovycTest*.*"/>
+            <exclude name="GroovycTest2.java"/>
         </groovyc>
         <java classname="org.codehaus.groovy.ant.GroovycTest1"/>
     </target>

Reply via email to