From e55858cc40ebf881d51b04d2fd37069706c33c78 Mon Sep 17 00:00:00 2001 From: Steven Gu Date: Tue, 18 Jul 2023 14:25:41 +0800 Subject: [PATCH] Try to enable `test_aggregation_circuit`. --- aggregator/src/tests/aggregation.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }