From 17eaa88f65fd70d872f3d626070bdbe4b5be0fa9 Mon Sep 17 00:00:00 2001 From: Evan Mattson Date: Thu, 9 Apr 2026 13:49:54 +0900 Subject: [PATCH] Fix test compat for entity key validation --- python/packages/durabletask/tests/test_executors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/packages/durabletask/tests/test_executors.py b/python/packages/durabletask/tests/test_executors.py index 2333f08106..8cc9900037 100644 --- a/python/packages/durabletask/tests/test_executors.py +++ b/python/packages/durabletask/tests/test_executors.py @@ -50,6 +50,7 @@ def mock_orchestration_context(mock_entity_task: Mock) -> Mock: """Provide a mock orchestration context with call_entity configured.""" context = Mock() context.call_entity = Mock(return_value=mock_entity_task) + context.new_uuid = Mock(return_value="test-uuid-1234") return context