From b4d11e0215dff9ca3d88a3c6a7e0ec6fa7fe8e11 Mon Sep 17 00:00:00 2001 From: Landon Cox Date: Thu, 16 Apr 2026 07:46:12 -0700 Subject: [PATCH] Fix gofmt alignment in jwt_expiry_test.go Correct struct field alignment in TestExtractJWTExpiry_WrongPartCount test table to satisfy gofmt. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- internal/oidc/jwt_expiry_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/oidc/jwt_expiry_test.go b/internal/oidc/jwt_expiry_test.go index 1d4ec6c6..d095d937 100644 --- a/internal/oidc/jwt_expiry_test.go +++ b/internal/oidc/jwt_expiry_test.go @@ -122,9 +122,9 @@ func TestExtractJWTExpiry_MissingExpClaim(t *testing.T) { // other than 3 (separated by ".") are rejected with a descriptive error. func TestExtractJWTExpiry_WrongPartCount(t *testing.T) { tests := []struct { - name string - token string - wantParts int + name string + token string + wantParts int }{ {"one part", "headeronly", 1}, {"two parts", "header.payload", 2},