Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
luhn committed Oct 16, 2023
1 parent 1909433 commit 4e6a7be
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_api_jws.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,9 @@ def test_decodes_with_jwk_and_no_algorithm(self, jws, payload):
def test_decodes_with_jwk_and_mismatched_algorithm(self, jws, payload):
jwk = PyJWK(
{
"kty": "EC",
"crv": "P-256",
"x": "PTTjIY84aLtaZCxLTrG_d8I0G6YKCV7lg8M4xkKfwQ4",
"y": "ank6KA34vv24HZLXlChVs85NEGlpg2sbqNmR_BcgyJU",
"kty": "oct",
"alg": "HS512",
"k": "c2VjcmV0", # "secret"
}
)
example_jws = (
Expand Down

0 comments on commit 4e6a7be

Please sign in to comment.