From 7746abbbb7700fa918450101bbc6d29ed9b4b608 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 9 Nov 2022 22:29:33 -0700 Subject: Most of the way through the stator refactor --- stator/tests/test_graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stator/tests') 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() -- cgit v1.2.3