From cf1f1be324669bf978cc6b473d8cf3693b25e3d5 Mon Sep 17 00:00:00 2001 From: a2a-cloud Date: Sat, 18 Jul 2026 08:14:30 +0000 Subject: [PATCH] a2a-source-edit: write tests/test_full_stack_contract.py --- tests/test_full_stack_contract.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_full_stack_contract.py b/tests/test_full_stack_contract.py index e41be6d..442fa30 100644 --- a/tests/test_full_stack_contract.py +++ b/tests/test_full_stack_contract.py @@ -16,6 +16,7 @@ def load_agent_module(): spec = importlib.util.spec_from_file_location("contract_clock_agent", ROOT / "agent.py") module = importlib.util.module_from_spec(spec) assert spec.loader is not None + sys.modules[spec.name] = module spec.loader.exec_module(module) return module