Skip to content
Snippets Groups Projects

WS-797: Polishing QA process

Merged Nathan Hertz requested to merge WS-797-set-request-state-using-version-state into main
1 unresolved thread
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
@@ -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()
Loading