mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
Remove two unnecessary into_iter (#290)
This commit is contained in:
parent
64b26ad074
commit
7dc1bbd855
1 changed files with 2 additions and 3 deletions
|
|
@ -132,9 +132,8 @@ fn get_test_vectors() -> impl Iterator<Item = TestVector> {
|
|||
/// VERIFY_STRICT_ALLOWED_EDGECASES, respectively
|
||||
#[test]
|
||||
fn check_validation_criteria() {
|
||||
let verify_allowed_edgecases = Set::from_iter(VERIFY_ALLOWED_EDGECASES.to_vec().into_iter());
|
||||
let verify_strict_allowed_edgecases =
|
||||
Set::from_iter(VERIFY_STRICT_ALLOWED_EDGECASES.to_vec().into_iter());
|
||||
let verify_allowed_edgecases = Set::from_iter(VERIFY_ALLOWED_EDGECASES.to_vec());
|
||||
let verify_strict_allowed_edgecases = Set::from_iter(VERIFY_STRICT_ALLOWED_EDGECASES.to_vec());
|
||||
|
||||
for TestVector {
|
||||
number,
|
||||
|
|
|
|||
Loading…
Reference in a new issue