diff --git a/o1vm/src/pickles/tests.rs b/o1vm/src/pickles/tests.rs index 873609d604..0260e06587 100644 --- a/o1vm/src/pickles/tests.rs +++ b/o1vm/src/pickles/tests.rs @@ -24,6 +24,7 @@ use mina_poseidon::{ use o1_utils::tests::make_test_rng; use poly_commitment::SRS; use strum::{EnumCount, IntoEnumIterator}; + #[test] fn test_regression_constraints_with_selectors() { let constraints = { @@ -75,6 +76,7 @@ fn test_regression_selectors_for_instructions() { fn zero_to_n_minus_one(n: usize) -> Vec { (0..n).map(|i| Fq::from((i) as u64)).collect() } + #[test] fn test_small_circuit() { let domain = EvaluationDomains::::create(8).unwrap();