Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangxiecrypto committed Oct 15, 2023
1 parent cc4922f commit e6cd300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ot/mpz-ot-core/src/ferret/spcot/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ mod tests {

let msg_from_sender = sender.extend(h, msg_for_sender, maskbits).unwrap();

let _ = receiver
receiver
.extend(h, alpha, msg_for_receiver, msg_from_sender)
.unwrap();

Expand All @@ -53,7 +53,7 @@ mod tests {
.check(h, msg_for_sender, check_from_receiver)
.unwrap();

let _ = receiver.check(msg_for_receiver, check).unwrap();
receiver.check(msg_for_receiver, check).unwrap();

sender.state.vs[alpha] ^= sender.state.delta;
assert_eq!(sender.state.vs, receiver.state.ws);
Expand Down

0 comments on commit e6cd300

Please sign in to comment.