diff options
Diffstat (limited to 'internal/executor/agentmcp_test.go')
| -rw-r--r-- | internal/executor/agentmcp_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/executor/agentmcp_test.go b/internal/executor/agentmcp_test.go index 18299e8..c45964d 100644 --- a/internal/executor/agentmcp_test.go +++ b/internal/executor/agentmcp_test.go @@ -48,6 +48,9 @@ func (c *recordingChannel) ProposeRoleConfig(_ context.Context, cfg role.RoleCon c.proposedRoleConfigs = append(c.proposedRoleConfigs, cfg) return c.roleConfigVersion, nil } +func (c *recordingChannel) ReportVerdict(_ context.Context, approved bool, reasoning string) error { + return nil +} func resultText(t *testing.T, res *mcp.CallToolResult) string { t.Helper() |
