Skip to content

Commit

Permalink
FIXUP benches
Browse files Browse the repository at this point in the history
  • Loading branch information
aewag committed Sep 2, 2024
1 parent b3bf61d commit 0480313
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions benches/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ mod tests {
b.iter(|| {
let mut signing_key = signing_key.clone();
signing_key
.try_sign_with_aux(&MESSAGE, Some(aux_slice))
.try_sign_with_aux(&MESSAGE, Some(aux_slice), None)
.unwrap()
});
}
Expand All @@ -153,7 +153,7 @@ mod tests {
b.iter(|| {
let mut signing_key = signing_key.clone();
signing_key
.try_sign_with_aux(&MESSAGE, Some(aux_slice))
.try_sign_with_aux(&MESSAGE, Some(aux_slice), None)
.unwrap()
});
}
Expand All @@ -171,7 +171,7 @@ mod tests {
b.iter(|| {
let mut signing_key = signing_key.clone();
signing_key
.try_sign_with_aux(&MESSAGE, Some(aux_slice))
.try_sign_with_aux(&MESSAGE, Some(aux_slice), None)
.unwrap()
});
}
Expand Down Expand Up @@ -203,7 +203,7 @@ mod tests {
b.iter(|| {
let mut signing_key = signing_key.clone();
signing_key
.try_sign_with_aux(&MESSAGE, Some(aux_slice))
.try_sign_with_aux(&MESSAGE, Some(aux_slice), None)
.unwrap()
});
}
Expand Down

0 comments on commit 0480313

Please sign in to comment.