From d1385fed0d45329171c2119de5d3713a09d18399 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Tue, 17 Jun 2025 10:47:02 +0200 Subject: [PATCH] Basic state manager test --- tests/test_state_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_state_manager.py b/tests/test_state_manager.py index 21b16d6..5d3da06 100644 --- a/tests/test_state_manager.py +++ b/tests/test_state_manager.py @@ -12,7 +12,7 @@ def get_state(app_context : AppContext) -> Union[State, ProcessorState]: def clear_state(app_context : AppContext) -> None: - STATE_SET[app_context] = {} + STATE_SET[app_context] = {} #type:ignore[typeddict-item] @pytest.fixture(scope = 'function', autouse = True)