Skip to content
Snippets Groups Projects
Commit cc3cb0b7 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Fixing tests; the method in the test was not supposed to be renamed

parent a085ba9b
No related branches found
No related tags found
1 merge request!657WS-797: Polishing QA process
Pipeline #3688 canceled
This commit is part of merge request !657. Comments created here will be created in the context of that merge request.
......@@ -100,7 +100,7 @@ class MealyMachine:
self.signal({"event_type": "start"})
def signal(self, message: Dict):
self.state = self.state.perform_action(message)
self.state = self.state.signal(message)
def complete(self):
return self.state.accepting_state()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment