summaryrefslogtreecommitdiffstats
path: root/test/src/test-predicates.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/test-predicates.cpp')
-rw-r--r--test/src/test-predicates.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/src/test-predicates.cpp b/test/src/test-predicates.cpp
index ff61f92..336a56b 100644
--- a/test/src/test-predicates.cpp
+++ b/test/src/test-predicates.cpp
@@ -34,14 +34,14 @@ int main(int argc, char** argv) {
assert(initialState[0] == atomicState);
NodeSet<std::string> childs = interpreter.getChildStates(compoundState);
- Node<std::string> compundChild1 = interpreter.getState("compundChild1");
- Node<std::string> compundChild2 = interpreter.getState("compundChild2");
+ Node<std::string> compoundChild1 = interpreter.getState("compoundChild1");
+ Node<std::string> compoundChild2 = interpreter.getState("compoundChild2");
assert(childs.size() > 0);
- assert(Interpreter::isMember(compundChild1, childs));
- assert(Interpreter::isMember(compundChild2, childs));
+ assert(Interpreter::isMember(compoundChild1, childs));
+ assert(Interpreter::isMember(compoundChild2, childs));
assert(!Interpreter::isMember(compoundState, childs));
- assert(Interpreter::isDescendant(compundChild1, compoundState));
+ assert(Interpreter::isDescendant(compoundChild1, compoundState));
std::string transEvents;
transEvents = "error";