diff options
Diffstat (limited to 'internal/api/agentmcp_endpoint_test.go')
| -rw-r--r-- | internal/api/agentmcp_endpoint_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/api/agentmcp_endpoint_test.go b/internal/api/agentmcp_endpoint_test.go index b9cee3a..7ea71aa 100644 --- a/internal/api/agentmcp_endpoint_test.go +++ b/internal/api/agentmcp_endpoint_test.go @@ -27,6 +27,9 @@ func (f *fakeAgentChannel) RecordProgress(_ context.Context, m string) error { f.progress = append(f.progress, m) return nil } +func (f *fakeAgentChannel) ProposeEpic(context.Context, executor.EpicProposal) (string, error) { + return "epic-1", nil +} type tokenRT struct { token string |
