Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
joe bebel committed Sep 22, 2023
1 parent 6ad27c1 commit d2c99e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions masp_primitives/src/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ mod tests {
+ ValueSum::from_pair(btc(), 6i128).unwrap()
+ ValueSum::from_pair(xan(), 7i128).unwrap();
// Right operand
let b =
ValueSum::from_pair(zec(), 2i128).unwrap() + ValueSum::from_pair(xan(), 10i128).unwrap();
let b = ValueSum::from_pair(zec(), 2i128).unwrap()
+ ValueSum::from_pair(xan(), 10i128).unwrap();
// Test homomorphism
assert_eq!(
AllowedConversion::from(a.clone() + b.clone()),
Expand Down

0 comments on commit d2c99e4

Please sign in to comment.