Skip to content

Commit

Permalink
fixing fmt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-arte committed Jun 20, 2023
1 parent ba359a4 commit 049e6f4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/issuance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1343,8 +1343,7 @@ mod tests {

#[test]
fn issue_bundle_cannot_be_signed_with_asset_base_identity_point() {
let (rng, isk, bundle, sighash) =
identity_point_test_params(10, 20);
let (rng, isk, bundle, sighash) = identity_point_test_params(10, 20);

assert_eq!(
bundle.prepare(sighash).sign(rng, &isk).unwrap_err(),
Expand All @@ -1354,8 +1353,7 @@ mod tests {

#[test]
fn issue_bundle_verify_fail_asset_base_identity_point() {
let (mut rng, isk, bundle, sighash) =
identity_point_test_params(10, 20);
let (mut rng, isk, bundle, sighash) = identity_point_test_params(10, 20);

let signed = IssueBundle {
ik: bundle.ik,
Expand Down

0 comments on commit 049e6f4

Please sign in to comment.