Addressing @Copilot suggestion to remove the init() function which seemed redundant

This commit is contained in:
Kunal Karmakar 2026-03-12 16:04:25 +00:00
parent ad74f2736c
commit 4542d25637

View file

@ -2,7 +2,6 @@ package common
import ( import (
"encoding/json" "encoding/json"
"io"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
"net/url" "net/url"
@ -533,9 +532,3 @@ func TestParseResponse_WithThoughtSignature(t *testing.T) {
out.ToolCalls[0].ExtraContent.Google.ThoughtSignature, "sig123") out.ToolCalls[0].ExtraContent.Google.ThoughtSignature, "sig123")
} }
} }
// helper to discard response body
func init() {
// suppress log output during tests
_ = io.Discard
}