From 52dc09af954a9030ff3608aa11ad91ef0779a292 Mon Sep 17 00:00:00 2001 From: shanglei Date: Tue, 2 Jun 2026 20:16:42 +0800 Subject: [PATCH] style(sidecar): gofmt hmac_test.go Align comment spacing flagged by the fast-gate gofmt check. --- sidecar/hmac_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sidecar/hmac_test.go b/sidecar/hmac_test.go index bbc09ca64..247f372d7 100644 --- a/sidecar/hmac_test.go +++ b/sidecar/hmac_test.go @@ -272,9 +272,9 @@ func TestValidateProxyAddr_RejectsUserinfo(t *testing.T) { // integrity/auth, so cross-machine https is supported. func TestValidateProxyAddr_HTTPSAllowed(t *testing.T) { for _, addr := range []string{ - "https://127.0.0.1:16384", // same-host over TLS + "https://127.0.0.1:16384", // same-host over TLS "https://sidecar.corp.internal:443", - "https://sidecar.mycorp.com", // remote, no explicit port + "https://sidecar.mycorp.com", // remote, no explicit port "https://sidecar.mycorp.com:8443", } { if err := ValidateProxyAddr(addr); err != nil {