Skip to content

Commit

Permalink
fix: incorrect parameter in k256/p256 test
Browse files Browse the repository at this point in the history
  • Loading branch information
nhtyy committed Feb 7, 2025
1 parent c3d933b commit 1ea8f5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion patch-testing/k256/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ pub fn test_recover_pubkey_infinity(
use ecdsa_core::RecoveryId;
use k256::{ecdsa::Signature, ecdsa::VerifyingKey};

let times = 100_u8;
let times = 3_u8;
stdin.write(&times);

let mut vkeys = Vec::with_capacity(times as usize);
Expand Down
2 changes: 1 addition & 1 deletion patch-testing/p256/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ pub fn test_recover_pubkey_infinity(
use ecdsa_core::RecoveryId;
use p256::{ecdsa::Signature, ecdsa::VerifyingKey};

let times = 100_u8;
let times = 3_u8;
stdin.write(&times);

let mut vkeys = Vec::with_capacity(times as usize);
Expand Down

0 comments on commit 1ea8f5f

Please sign in to comment.