fix(ci): gofmt manager_test.go to unbreak main (#2386)

manager_test.go landed from #2350 with a gofmt violation (extra spaces
aligning a struct field), turning main red: build-test's `gofmt -l .`
and lint's goimports both flag it. #2350's merge push never ran the Go
workflow, so it went unnoticed until the next push surfaced it.

Pure `gofmt -w` output, one whitespace line, no behavior change.
This commit is contained in:
Harshit Singh Bhandari 2026-07-03 22:42:27 +05:30 committed by GitHub
parent c9cff5f22e
commit 8cadea5b16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1913,7 +1913,7 @@ func TestReconcile_AdoptAcrossDaemonRestart(t *testing.T) {
st.sessions["mer-4"] = domain.SessionRecord{ st.sessions["mer-4"] = domain.SessionRecord{
ID: "mer-4", ProjectID: "mer", Kind: domain.KindWorker, Harness: domain.HarnessClaudeCode, ID: "mer-4", ProjectID: "mer", Kind: domain.KindWorker, Harness: domain.HarnessClaudeCode,
IsTerminated: true, Activity: domain.Activity{State: domain.ActivityExited}, IsTerminated: true, Activity: domain.Activity{State: domain.ActivityExited},
Metadata: domain.SessionMetadata{Branch: "ao/mer-4/root", WorkspacePath: "/ws/mer-4"}, Metadata: domain.SessionMetadata{Branch: "ao/mer-4/root", WorkspacePath: "/ws/mer-4"},
} }
if err := m.Reconcile(ctx); err != nil { if err := m.Reconcile(ctx); err != nil {