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 f20a9f3 use javascript w/ javax for scriptcondition return tests
f20a9f3 is described below
commit f20a9f3cb228b6144822c7b13b0617f5790f3fc6
Author: Matt Benson <[email protected]>
AuthorDate: Tue Feb 15 10:28:00 2022 -0600
use javascript w/ javax for scriptcondition return tests
---
src/tests/antunit/types/optional/scriptcondition-test.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/tests/antunit/types/optional/scriptcondition-test.xml
b/src/tests/antunit/types/optional/scriptcondition-test.xml
index 40315c1..6a1b346 100644
--- a/src/tests/antunit/types/optional/scriptcondition-test.xml
+++ b/src/tests/antunit/types/optional/scriptcondition-test.xml
@@ -70,7 +70,7 @@
<target name="test-return-value-true">
<au:assertTrue>
- <scriptcondition language="beanshell">
+ <scriptcondition language="javascript" manager="javax">
true
</scriptcondition>
</au:assertTrue>
@@ -78,7 +78,7 @@
<target name="test-return-value-false">
<au:assertFalse>
- <scriptcondition language="beanshell" value="true">
+ <scriptcondition language="javascript" manager="javax" value="true">
false
</scriptcondition>
</au:assertFalse>