()
| 113 | |
| 114 | |
| 115 | def test_format_tool_response_dict(): |
| 116 | payload = {"a": 1} |
| 117 | out = ToolManager.format_tool_response(payload) |
| 118 | assert json.loads(out) == payload |
| 119 | |
| 120 | |
| 121 | def test_format_tool_response_other(): |
nothing calls this directly
no test coverage detected