update dependency

This commit is contained in:
Looly
2023-11-12 18:41:58 +08:00
parent 7b733ee09f
commit cf1951f572
4 changed files with 9 additions and 9 deletions

View File

@@ -42,7 +42,7 @@ public class Issue3205Test {
final String token = jwt.sign();
final boolean signed = Jwts.parserBuilder().setSigningKey(keyPair.getPublic()).build().isSigned(token);
final boolean signed = Jwts.parser().verifyWith(keyPair.getPublic()).build().isSigned(token);
Assertions.assertTrue(signed);
}