From 534653228d934799580dc25fd2290b9caba7b69e Mon Sep 17 00:00:00 2001 From: Anu S Pillai Date: Mon, 9 Mar 2026 02:08:01 +0530 Subject: [PATCH] style: apply golangci-lint formatting to test file Made-with: Cursor --- pkg/agent/context_skills_test.go | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pkg/agent/context_skills_test.go b/pkg/agent/context_skills_test.go index 47a8d86ac..c1c9edfd7 100644 --- a/pkg/agent/context_skills_test.go +++ b/pkg/agent/context_skills_test.go @@ -24,7 +24,14 @@ func TestMatchSkillsInMessage_Basic(t *testing.T) { tmpDir := setupWorkspace(t, nil) defer os.RemoveAll(tmpDir) - createTestSkill(t, filepath.Join(tmpDir, "skills"), "news-summary", "news-summary", "Summarize news", "Read RSS feeds") + createTestSkill( + t, + filepath.Join(tmpDir, "skills"), + "news-summary", + "news-summary", + "Summarize news", + "Read RSS feeds", + ) createTestSkill(t, filepath.Join(tmpDir, "skills"), "weather", "weather", "Get weather info", "Check weather API") cb := NewContextBuilder(tmpDir) @@ -144,7 +151,14 @@ func TestLoadSkillContext(t *testing.T) { tmpDir := setupWorkspace(t, nil) defer os.RemoveAll(tmpDir) - createTestSkill(t, filepath.Join(tmpDir, "skills"), "weather", "weather", "Get weather", "Call the weather API with the user's location.") + createTestSkill( + t, + filepath.Join(tmpDir, "skills"), + "weather", + "weather", + "Get weather", + "Call the weather API with the user's location.", + ) cb := NewContextBuilder(tmpDir)