From 077c68ce870f22bb96755c57d24e2d836395ef6a Mon Sep 17 00:00:00 2001 From: Philip Kalinsky Date: Thu, 13 Feb 2020 13:22:28 -0500 Subject: [PATCH] state machine test corrected --- tests/domain/test_portfolio_state_machine.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/domain/test_portfolio_state_machine.py b/tests/domain/test_portfolio_state_machine.py index d2fe6b94..2784518f 100644 --- a/tests/domain/test_portfolio_state_machine.py +++ b/tests/domain/test_portfolio_state_machine.py @@ -94,6 +94,7 @@ def test_build_transitions(): ["TENANT", "FAILED"], ] assert [t.get("trigger") for t in transitions] == [ + "complete", "create_tenant", "finish_tenant", "fail_tenant",