Skip to content

Commit

Permalink
Fix test to actually do what it should
Browse files Browse the repository at this point in the history
This one was odd, glad CI picked it.

Signed-off-by: Simo Sorce <simo@redhat.com>
  • Loading branch information
simo5 committed Mar 15, 2023
1 parent 381c5d1 commit dc21a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwcrypto/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ def test_A7(self):
def test_E(self):
s = jws.JWS(A6_example['payload'])
with self.assertRaises(jws.InvalidJWSSignature):
jws.InvalidJWSSignature(s.deserialize, E_negative)
s.deserialize(E_negative)
s.verify(None)

def test_customhdr_jws(self):
Expand Down

0 comments on commit dc21a78

Please sign in to comment.