diff options
author | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-07-01 22:51:30 (GMT) |
---|---|---|
committer | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-07-01 22:51:30 (GMT) |
commit | 945160d0539ad119ffc986fac712db76c7203e84 (patch) | |
tree | c43e4a7db898026bc62cc20af5061d07736f847e /test/w3c/txml/test237.txml | |
parent | c70d02010ea99e6c8e35da3b767f41f1ee5dce56 (diff) | |
download | uscxml-945160d0539ad119ffc986fac712db76c7203e84.zip uscxml-945160d0539ad119ffc986fac712db76c7203e84.tar.gz uscxml-945160d0539ad119ffc986fac712db76c7203e84.tar.bz2 |
More polishing for bindings C# and Java
Diffstat (limited to 'test/w3c/txml/test237.txml')
-rw-r--r-- | test/w3c/txml/test237.txml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/w3c/txml/test237.txml b/test/w3c/txml/test237.txml index c6097bc..5923705 100644 --- a/test/w3c/txml/test237.txml +++ b/test/w3c/txml/test237.txml @@ -10,7 +10,7 @@ the time timeout2 fires, success --> <state id="s0"> <onentry> - <send event="timeout1" delay="1s"/> + <send event="timeout1" conf:delay="1"/> </onentry> <invoke type="http://www.w3.org/TR/scxml/"> <content> @@ -18,7 +18,7 @@ the time timeout2 fires, success --> <scxml initial="sub0" version="1.0" conf:datamodel="" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance"> <state id="sub0"> <onentry> - <send event="timeout" delay="2s"/> + <send event="timeout" conf:delay="2"/> </onentry> <transition event="timeout" target="subFinal"/> </state> @@ -33,7 +33,7 @@ the time timeout2 fires, success --> <state id="s1"> <onentry> - <send event="timeout2" delay="2s"/> + <send event="timeout2" conf:delay="1.5"/> </onentry> <!-- here we should NOT get done.invoke --> <transition event="done.invoke" conf:targetfail=""/> |