From 7c1a1c2c1a8554d29c11903103d231962ffdac4f Mon Sep 17 00:00:00 2001 From: xiaoen <2768753269@qq.com> Date: Fri, 13 Mar 2026 16:30:26 +0800 Subject: [PATCH] style(agent): fix gci comment alignment in test --- pkg/agent/context_budget_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/agent/context_budget_test.go b/pkg/agent/context_budget_test.go index 30b3fe6a2..870f0fbe6 100644 --- a/pkg/agent/context_budget_test.go +++ b/pkg/agent/context_budget_test.go @@ -351,10 +351,10 @@ func TestFindSafeBoundary_SingleTurnReturnsZero(t *testing.T) { // is at index 0; cutting anywhere else would split the Turn's tool // sequence. findSafeBoundary must return 0 so callers skip compression. history := []providers.Message{ - msgUser("do everything"), // 0 ← only Turn boundary - msgAssistantTC("tc1"), // 1 - msgTool("tc1", "result"), // 2 - msgAssistant("all done"), // 3 + msgUser("do everything"), // 0 ← only Turn boundary + msgAssistantTC("tc1"), // 1 + msgTool("tc1", "result"), // 2 + msgAssistant("all done"), // 3 } got := findSafeBoundary(history, 2)