From a24c1f02e9a0db20423b28942c06911a091e817a Mon Sep 17 00:00:00 2001 From: Daisuke Maki Date: Sat, 27 Jul 2024 12:48:03 +0900 Subject: [PATCH] Avoid problems on 32-bit systems --- jwk/jwk_test.go | 2 +- jwt/jwt_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jwk/jwk_test.go b/jwk/jwk_test.go index 5cd1699f4..70afce80b 100644 --- a/jwk/jwk_test.go +++ b/jwk/jwk_test.go @@ -1447,7 +1447,7 @@ c4wOvhbalcX0FqTM3mXCgMFRbibquhwdxbU= type typedField struct { Foo string - Bar int + Bar int64 } func TestTypedFields(t *testing.T) { diff --git a/jwt/jwt_test.go b/jwt/jwt_test.go index f72dff8bd..f0b74a75e 100644 --- a/jwt/jwt_test.go +++ b/jwt/jwt_test.go @@ -1117,7 +1117,7 @@ func TestGH375(t *testing.T) { type Claim struct { Foo string - Bar int + Bar int64 } func TestJWTParseWithTypedClaim(t *testing.T) {