Compare commits

...

1 Commits

Author SHA1 Message Date
core-be dfe0e2a9d0 fix(handlers): remove conflict-resolution artifact from delegation_test.go
Line 1685 had the branch name concatenated outside the t.Errorf() closing
paren, and line 1688 was a stray branch-name line — both leftover from a
conflict resolution that was not fully cleaned. This causes a Go compilation
error and explains the CI / Platform (Go) failure on PR #882.

[core-be-agent]

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-13 22:13:24 +00:00
@@ -1682,7 +1682,6 @@ func TestListDelegations_LedgerFailedIncludesErrorDetail(t *testing.T) {
t.Errorf("expected error detail, got %v", resp[0]["error"])
}
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("unmet sqlmock expectations: %v", err) (fix(delegations): ListDelegations falls back to delegations table before activity_logs)
t.Errorf("unmet sqlmock expectations: %v", err)
}
}
(fix(delegations): ListDelegations falls back to delegations table before activity_logs)