Skip to content

Commit

Permalink
fix: Run formatter.
Browse files Browse the repository at this point in the history
  • Loading branch information
clundin25 committed Nov 15, 2022
1 parent d662de2 commit bc02d36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_jwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ def test_decode_payload_object(signer):

with pytest.raises(ValueError) as excinfo:
jwt.decode(payload, certs=PUBLIC_CERT_BYTES)
assert excinfo.match(r"Payload segment should be a JSON object: " + str(b"ImlhdGV4cCI"))
assert excinfo.match(
r"Payload segment should be a JSON object: " + str(b"ImlhdGV4cCI")
)


def test_decode_valid_es256(token_factory):
Expand Down

0 comments on commit bc02d36

Please sign in to comment.