diff options
author | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2012-11-20 14:46:11 (GMT) |
---|---|---|
committer | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2012-11-20 14:46:11 (GMT) |
commit | 1cf1603a5230889aee3acd4cee0581bdfaf6adbd (patch) | |
tree | 2fef7395ebf5ebd2a1bba3d497cbf280d203e736 /test/samples | |
parent | da08a1d3c3bca8070c9b029cfc1f8faf9e34dd25 (diff) | |
download | uscxml-1cf1603a5230889aee3acd4cee0581bdfaf6adbd.zip uscxml-1cf1603a5230889aee3acd4cee0581bdfaf6adbd.tar.gz uscxml-1cf1603a5230889aee3acd4cee0581bdfaf6adbd.tar.bz2 |
Fixed build and removed binaries
Diffstat (limited to 'test/samples')
-rw-r--r-- | test/samples/uscxml/test-umundo-map-demo.scxml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/samples/uscxml/test-umundo-map-demo.scxml b/test/samples/uscxml/test-umundo-map-demo.scxml index 8ee91f1..0f66587 100644 --- a/test/samples/uscxml/test-umundo-map-demo.scxml +++ b/test/samples/uscxml/test-umundo-map-demo.scxml @@ -51,19 +51,19 @@ <!-- this is the state where we wait for events --> <state id="idle"> - <!-- onentry> + <onentry> <log expr="'== Idleing ====='" /> - </onentry --> + </onentry> <transition target="dump" event="*" /> </state> <state id="dump"> - <!-- onentry> + <onentry> <log expr="'== Dumping Event ====='" /> <script> dump(_event); </script> - </onentry --> + </onentry> <transition target="idle" /> </state> |