You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2017/06/28 13:23:03 UTC

incubator-freemarker git commit: Fixed wrong test

Repository: incubator-freemarker
Updated Branches:
  refs/heads/2.3-gae f933ed03d -> 387dcd44f


Fixed wrong test


Project: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/commit/387dcd44
Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/387dcd44
Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/387dcd44

Branch: refs/heads/2.3-gae
Commit: 387dcd44ff8f0c56f9c4c6508025c2a68e54ea14
Parents: f933ed0
Author: ddekany <dd...@apache.org>
Authored: Wed Jun 28 15:22:37 2017 +0200
Committer: ddekany <dd...@apache.org>
Committed: Wed Jun 28 15:22:37 2017 +0200

----------------------------------------------------------------------
 .../freemarker/test/templatesuite/templates/boolean.ftl          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/387dcd44/src/test/resources/freemarker/test/templatesuite/templates/boolean.ftl
----------------------------------------------------------------------
diff --git a/src/test/resources/freemarker/test/templatesuite/templates/boolean.ftl b/src/test/resources/freemarker/test/templatesuite/templates/boolean.ftl
index a76d9b9..49816ee 100644
--- a/src/test/resources/freemarker/test/templatesuite/templates/boolean.ftl
+++ b/src/test/resources/freemarker/test/templatesuite/templates/boolean.ftl
@@ -71,9 +71,9 @@
 <#else>
     boolean4 && boolean5 failed.<br />
 </#if></p>
-<@assert test=boolean4 &amp;&amp; boolean5 />
+<@assert test=true &amp;&amp; true />
 <@assert test=!(false &amp;&amp; true) />
-<@assert test=boolean4 \and boolean5 />
+<@assert test=true \and true />
 <@assert test=!(false \and true) />
  
 <p>Now test list models:</p>