This is an automated email from the ASF dual-hosted git repository. skrawcz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/burr.git
commit 52a4714b83709b90491d5de05585294db024cabd Author: Stefan Krawczyk <[email protected]> AuthorDate: Sat Jan 31 13:02:44 2026 -0800 Fixes precommit --- tests/core/test_application.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tests/core/test_application.py b/tests/core/test_application.py index ab42c77d..c90c4067 100644 --- a/tests/core/test_application.py +++ b/tests/core/test_application.py @@ -23,14 +23,6 @@ import typing import uuid from typing import Any, Awaitable, Callable, Dict, Generator, Literal, Optional, Tuple, Union -from burr.core.application import ApplicationBuilder -from burr.core.state import State -from burr.core.persistence import ( - BaseStatePersister, - BaseStateLoader, - PersistedStateData, -) - import pytest from burr.core import State @@ -71,6 +63,7 @@ from burr.core.application import ( from burr.core.graph import Graph, GraphBuilder, Transition from burr.core.persistence import ( AsyncDevNullPersister, + BaseStateLoader, BaseStatePersister, DevNullPersister, PersistedStateData, @@ -3734,6 +3727,7 @@ def test_application__process_control_flow_params(): assert halt_before == ["test_action"] assert inputs == {} + def test_initialize_from_applies_override_state_values(): class FakeStateLoader(BaseStateLoader): def load(self, partition_key, app_id, sequence_id):
