You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by at...@apache.org on 2014/01/30 21:13:02 UTC

svn commit: r1562942 - in /commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy: microwave-02.xml microwave-04.xml

Author: ate
Date: Thu Jan 30 20:13:01 2014
New Revision: 1562942

URL: http://svn.apache.org/r1562942
Log:
SCXML-186: fix Groovy syntax ("not" not being a Groovy operator)

Modified:
    commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-02.xml
    commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-04.xml

Modified: commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-02.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-02.xml?rev=1562942&r1=1562941&r2=1562942&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-02.xml (original)
+++ commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-02.xml Thu Jan 30 20:13:01 2014
@@ -61,7 +61,7 @@
         </state>
 
         <state id="cooking">
-          <transition cond="not In('closed')" target="idle"/>
+          <transition cond="!In('closed')" target="idle"/>
 
           <transition event="time" target="cooking">
             <assign name="timer" expr="timer + 1"/>

Modified: commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-04.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-04.xml?rev=1562942&r1=1562941&r2=1562942&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-04.xml (original)
+++ commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/groovy/microwave-04.xml Thu Jan 30 20:13:01 2014
@@ -63,7 +63,7 @@
         </state>
 
         <state id="cooking">
-          <transition cond="not In('closed')" target="idle"/>
+          <transition cond="!In('closed')" target="idle"/>
 
           <transition event="time" target="cooking">
             <assign name="timer" expr="timer + 1"/>