Skip to content

Commit

Permalink
small improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-mena committed Jul 17, 2024
1 parent 950e2b0 commit 12004d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curves/bls12381/signature_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func TestSignVerifyRecreatedKey(t *testing.T) {
priv2, err := GenPrivKeyFromSeed(seed)
require.NoError(t, err)
pub2 := priv2.PublicKey()
assert.Equal(t, true, sig.Verify(pub2, msg), "Signature did not verify")
assert.True(t, sig.Verify(pub2, msg), "Signature did not verify")
}

func TestVerifySingleSignature_InvalidSignature(t *testing.T) {
Expand Down

0 comments on commit 12004d7

Please sign in to comment.