This commit is contained in:
Daniel Lubarov 2022-11-29 12:39:41 -08:00
parent ad58dcbc0e
commit 3515fbddac
2 changed files with 2 additions and 2 deletions

View File

@ -317,6 +317,7 @@ impl<F: RichField + Extendable<D>, const D: usize> CircuitBuilder<F, D> {
#[cfg(test)]
mod tests {
use anyhow::Result;
use hashbrown::HashMap;
use super::*;
use crate::field::types::Sample;
@ -350,7 +351,7 @@ mod tests {
// Generate dummy proof with the same `CommonCircuitData`.
let dummy_data = dummy_circuit(&data.common);
let dummy_proof = dummy_proof(&dummy_data, &[])?;
let dummy_proof = dummy_proof(&dummy_data, HashMap::new())?;
// Conditionally verify the two proofs.
let mut builder = CircuitBuilder::<F, D>::new(config);

View File

@ -273,7 +273,6 @@ where
mod tests {
use anyhow::Result;
use hashbrown::HashMap;
use itertools::Itertools;
use crate::field::extension::Extendable;
use crate::field::types::{Field, PrimeField64};