From 991279fbadc8752c0e4b2785cc6d811332831577 Mon Sep 17 00:00:00 2001 From: lestrrat <49281+lestrrat@users.noreply.github.com> Date: Sat, 27 Jul 2024 13:22:02 +0900 Subject: [PATCH] Avoid problems on 32-bit systems (#1157) --- 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) {