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

Test changed with renamed method

parent 4d7fc754
No related branches found
No related tags found
1 merge request!657WS-797: Polishing QA process
This commit is part of merge request !657. Comments created here will be created in the context of that merge request.
......@@ -23,7 +23,6 @@ The objective of this file is to help with prototyping and testing the capabilit
from typing import Callable, Dict, List
import pytest
import requests
class Noop:
......@@ -101,7 +100,7 @@ class MealyMachine:
self.signal({"event_type": "start"})
def signal(self, message: Dict):
self.state = self.state.signal(message)
self.state = self.state.perform_action(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