diff --git a/aggregator/src/tests/aggregation.rs b/aggregator/src/tests/aggregation.rs index 216840a8ba..134fe8057d 100644 --- a/aggregator/src/tests/aggregation.rs +++ b/aggregator/src/tests/aggregation.rs @@ -14,7 +14,7 @@ use crate::{ use super::mock_chunk::MockChunkCircuit; -#[cfg(feature = "disable_proof_aggregation")] +// #[cfg(feature = "disable_proof_aggregation")] #[test] fn test_aggregation_circuit() { env_logger::init(); @@ -22,7 +22,7 @@ fn test_aggregation_circuit() { // This set up requires one round of keccak for chunk's data hash let circuit = build_new_aggregation_circuit(2); let instance = circuit.instances(); - let mock_prover = MockProver::::run(19, &circuit, instance).unwrap(); + let mock_prover = MockProver::::run(25, &circuit, instance).unwrap(); mock_prover.assert_satisfied_par(); }