summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
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>