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

Test changed with renamed method

parent 2801c10d
No related branches found
No related tags found
No related merge requests found
......@@ -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