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:
parent
c9cff5f22e
commit
8cadea5b16
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue