summaryrefslogtreecommitdiff
path: root/internal/executor/channel_test.go
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-07-09 03:26:52 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-07-09 03:26:52 +0000
commit4ac7894cd621300f8663022aff764e48c8b71d3e (patch)
tree1aa89cd450acf0c291e9582c6cb06e34292b2101 /internal/executor/channel_test.go
parent8068dca4641393c03aec12253e7c1195943727f1 (diff)
style: gofmt internal/executor and internal/agentloop
Task 2 of the task-acceptance-criteria plan copied the plan document's own misaligned struct-literal text verbatim without running gofmt afterward, newly breaking gofmt compliance on tools.go/agentmcp.go; also fixes pre-existing unrelated misalignment in channel.go/channel_test.go while touching the same files.
Diffstat (limited to 'internal/executor/channel_test.go')
-rw-r--r--internal/executor/channel_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/executor/channel_test.go b/internal/executor/channel_test.go
index a2e7c70..e21112b 100644
--- a/internal/executor/channel_test.go
+++ b/internal/executor/channel_test.go
@@ -23,9 +23,9 @@ type fakeChannelStore struct {
// Epic/story fakes back ProposeEpic (Phase 7c). epics is keyed by ID;
// GetEpicByName does a linear scan by Name, mirroring the real
// storage.DB.GetEpicByName's "exact match, simplest reasonable" behavior.
- epics map[string]*story.Epic
- createEpicErr error
- stories map[string]*story.Story
+ epics map[string]*story.Epic
+ createEpicErr error
+ stories map[string]*story.Story
updateStoryErr error
updatedStories []*story.Story
@@ -33,7 +33,7 @@ type fakeChannelStore struct {
// creation order — mirrors storage.DB.CreateRoleConfig's own
// "auto-assign next version number for that role" behavior without a
// real database.
- roleConfigs map[string][]*storage.RoleConfigRow
+ roleConfigs map[string][]*storage.RoleConfigRow
createRoleConfigErr error
}