auto-sync: 2026-05-18 16:22:17

This commit is contained in:
cfdaily
2026-05-18 16:22:17 +08:00
parent 3cc8a4359c
commit a6ada96b65
+2 -2
View File
@@ -741,7 +741,7 @@ class TestE9RealAgentDispatch:
max_dispatch_per_tick=3,
dispatcher=dispatcher,
)
result = asyncio.get_event_loop().run_until_complete(ticker.tick())
result = asyncio.run(ticker.tick())
# 验证 tick 结果有调度
assert self.pid in result.get("projects", {})
@@ -784,7 +784,7 @@ class TestE9RealAgentDispatch:
max_dispatch_per_tick=3,
dispatcher=dispatcher,
)
result = asyncio.get_event_loop().run_until_complete(ticker.tick())
result = asyncio.run(ticker.tick())
db_path = self.data_root / self.pid / "blackboard.db"
bb = Blackboard(db_path)