Browse Source

Last PR to get the curve tests to work (#113)

cherry-pick
Weikeng Chen 2 years ago
committed by GitHub
parent
commit
52577f93ba
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      ed_on_bls12_381/src/curves/tests.rs
  2. +1
    -1
      ed_on_bls12_381_bandersnatch/src/curves/tests.rs
  3. +1
    -1
      ed_on_bn254/src/curves/tests.rs

+ 1
- 1
ed_on_bls12_381/src/curves/tests.rs

@ -1,7 +1,7 @@
use ark_algebra_test_templates::curves::*;
use ark_ec::{AffineCurve, ProjectiveCurve};
use ark_ff::Zero;
use ark_std::str::FromStr;
use ark_std::{ops::Mul, str::FromStr};
use crate::*;

+ 1
- 1
ed_on_bls12_381_bandersnatch/src/curves/tests.rs

@ -1,7 +1,7 @@
use ark_algebra_test_templates::curves::*;
use ark_ec::{AffineCurve, ProjectiveCurve};
use ark_ff::Zero;
use ark_std::str::FromStr;
use ark_std::{ops::Mul, str::FromStr};
use crate::*;

+ 1
- 1
ed_on_bn254/src/curves/tests.rs

@ -1,7 +1,7 @@
use ark_algebra_test_templates::curves::*;
use ark_ec::{AffineCurve, ProjectiveCurve};
use ark_ff::Zero;
use ark_std::str::FromStr;
use ark_std::{ops::Mul, str::FromStr};
use crate::*;

Loading…
Cancel
Save