From 4c6dfb9058ef8d96ecc5f9369f43e2a679f0c54b Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Thu, 9 Apr 2026 19:29:14 +0000 Subject: [PATCH] test(v2/anthropic): drop placeholder import sentinel from cache_test.go Removes the blank-assign workaround that was only needed because the anth import was being kept alive for Task 5's use. Task 5 will bring the import back when it actually references anth.CacheControlTypeEphemeral. Co-Authored-By: Claude Opus 4.6 --- v2/anthropic/cache_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/v2/anthropic/cache_test.go b/v2/anthropic/cache_test.go index 16d6439..c44c5cb 100644 --- a/v2/anthropic/cache_test.go +++ b/v2/anthropic/cache_test.go @@ -4,7 +4,6 @@ import ( "testing" "gitea.stevedudenhoeffer.com/steve/go-llm/v2/provider" - anth "github.com/liushuangls/go-anthropic/v2" ) // TestBuildRequest_MultiSystemUsedWhenSystemPresent verifies that after the @@ -79,6 +78,4 @@ func TestBuildRequest_NoSystemMessage(t *testing.T) { if anthReq.System != "" { t.Errorf("expected empty System string, got %q", anthReq.System) } - // Silences the unused import warning in this file until Task 5. - _ = anth.CacheControlTypeEphemeral }