Basic state manager test

This commit is contained in:
henryruhs
2025-06-17 10:47:02 +02:00
parent 5112a15564
commit d1385fed0d

View File

@@ -12,7 +12,7 @@ def get_state(app_context : AppContext) -> Union[State, ProcessorState]:
def clear_state(app_context : AppContext) -> None: 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) @pytest.fixture(scope = 'function', autouse = True)