summaryrefslogtreecommitdiffstats
path: root/stator/tests/test_graph.py
diff options
context:
space:
mode:
Diffstat (limited to 'stator/tests/test_graph.py')
-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()