mirror of
https://github.com/arun11299/cpp-jwt.git
synced 2025-05-15 01:08:31 +00:00
Fix more signed/unsigned warnings.
This commit is contained in:
parent
0227be3445
commit
1fcfbaac75
2 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ TEST (DecodeTest, DecodeNoneAlgSign)
|
|||
EXPECT_TRUE (obj.has_claim("aud"));
|
||||
EXPECT_TRUE (obj.has_claim("exp"));
|
||||
|
||||
EXPECT_EQ (obj.payload().get_claim_value<uint64_t>("exp"), 1513863371);
|
||||
EXPECT_EQ (obj.payload().get_claim_value<uint64_t>("exp"), static_cast<uint64_t>(1513863371));
|
||||
}
|
||||
|
||||
TEST (DecodeTest, DecodeWrongAlgo)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue