Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Varlakov <denis@dfns.co>
  • Loading branch information
survived committed Dec 13, 2024
1 parent 505ee52 commit 2cbaa76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tests/it/interactive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ mod generic {
let eid: [u8; 32] = rng.gen();
let eid = givre::keygen::ExecutionId::new(&eid);

let mut sim_threshold = round_based::simulation::Simulation::with_capacity(n);
let mut sim_nonthreshold = round_based::simulation::Simulation::with_capacity(n);
let mut sim_threshold = round_based::sim::Simulation::with_capacity(n);
let mut sim_nonthreshold = round_based::sim::Simulation::with_capacity(n);
for j in 0..n {
let mut rng = rng.fork();
if let Some(t) = t {
Expand Down Expand Up @@ -81,7 +81,7 @@ mod generic {
.collect::<Vec<_>>();
let signers = signers.as_slice();

let sig = round_based::simulation::run_with_setup(signers, |j, party, &index_at_keygen| {
let sig = round_based::sim::run_with_setup(signers, |j, party, &index_at_keygen| {
let key_share = &key_shares[usize::from(index_at_keygen)];
let derivation_path = &derivation_path;
let mut rng = rng.fork();
Expand Down

0 comments on commit 2cbaa76

Please sign in to comment.