summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-11-20 14:46:11 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-11-20 14:46:11 (GMT)
commit1cf1603a5230889aee3acd4cee0581bdfaf6adbd (patch)
tree2fef7395ebf5ebd2a1bba3d497cbf280d203e736 /test
parentda08a1d3c3bca8070c9b029cfc1f8faf9e34dd25 (diff)
downloaduscxml-1cf1603a5230889aee3acd4cee0581bdfaf6adbd.zip
uscxml-1cf1603a5230889aee3acd4cee0581bdfaf6adbd.tar.gz
uscxml-1cf1603a5230889aee3acd4cee0581bdfaf6adbd.tar.bz2
Fixed build and removed binaries
Diffstat (limited to 'test')
-rw-r--r--test/samples/uscxml/test-umundo-map-demo.scxml8
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>