Skip to content

Commit

Permalink
Avoid problems on 32-bit systems (#1157)
Browse files Browse the repository at this point in the history
  • Loading branch information
lestrrat authored Jul 27, 2024
1 parent 4879e37 commit 991279f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jwk/jwk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,7 @@ c4wOvhbalcX0FqTM3mXCgMFRbibquhwdxbU=

type typedField struct {
Foo string
Bar int
Bar int64
}

func TestTypedFields(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion jwt/jwt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ func TestGH375(t *testing.T) {

type Claim struct {
Foo string
Bar int
Bar int64
}

func TestJWTParseWithTypedClaim(t *testing.T) {
Expand Down

0 comments on commit 991279f

Please sign in to comment.