Skip to content

Commit d4711af

Browse files
committed
disable keypair erasure test under fuzzing
1 parent e4751e1 commit d4711af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ mod test {
16131613
}
16141614

16151615
#[test]
1616-
#[cfg(feature = "std")]
1616+
#[cfg(all(feature = "std", not(fuzzing)))]
16171617
fn erased_keypair_is_valid() {
16181618
let s = Secp256k1::new();
16191619
let kp = KeyPair::from_seckey_slice(&s, &[1u8; constants::SECRET_KEY_SIZE])

0 commit comments

Comments
 (0)