summaryrefslogtreecommitdiffstats
path: root/stator/tests
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-09 22:29:33 -0700
committerAndrew Godwin2022-11-09 22:29:49 -0700
commit7746abbbb7700fa918450101bbc6d29ed9b4b608 (patch)
tree8768efd8201faa2fee18e5d3b46f33785002f5d6 /stator/tests
parent61c324508e62bb640b4526183d0837fc57d742c2 (diff)
downloadtakahe-7746abbbb7700fa918450101bbc6d29ed9b4b608.tar.gz
takahe-7746abbbb7700fa918450101bbc6d29ed9b4b608.tar.bz2
takahe-7746abbbb7700fa918450101bbc6d29ed9b4b608.zip
Most of the way through the stator refactor
Diffstat (limited to 'stator/tests')
-rw-r--r--stator/tests/test_graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/stator/tests/test_graph.py b/stator/tests/test_graph.py
index f6b8404..0a7113d 100644
--- a/stator/tests/test_graph.py
+++ b/stator/tests/test_graph.py
@@ -51,14 +51,14 @@ def test_bad_declarations():
# More than one initial state
with pytest.raises(ValueError):
- class TestGraph(StateGraph):
+ class TestGraph2(StateGraph):
initial = State()
initial2 = State()
# No initial states
with pytest.raises(ValueError):
- class TestGraph(StateGraph):
+ class TestGraph3(StateGraph):
loop = State()
loop2 = State()