revert check fix, add test cov

This commit is contained in:
lda
2026-07-30 02:03:29 +07:00 Verified
parent 981edd3cf5
commit 005a96c9ff
7 changed files with 115 additions and 28 deletions
+2 -2
View File
@@ -452,13 +452,13 @@ Do not change catalog refresh behavior yet. The adapter remains the temporary ex
In `tests/wf_mcp/test_workflow_wrappers.py`, replace:
```python
adapter = (cast(BackendAdapter, adapter),)
adapter = cast(BackendAdapter, adapter)
```
with:
```python
executor = (cast(ToolExecutor, adapter),)
executor = cast(ToolExecutor, adapter)
```
and import: