Skip to content

Commit

Permalink
use assert_ne
Browse files Browse the repository at this point in the history
  • Loading branch information
xoloki committed Dec 18, 2024
1 parent ecf1aa9 commit 87d7e68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state_machine/coordinator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ pub mod test {
panic!("Message should have been SignatureShareResponse");
};

assert!(share1.z_i != share2.z_i);
assert_ne!(share1.z_i, share2.z_i);
}
}
}

0 comments on commit 87d7e68

Please sign in to comment.