Code compiles, tests pass but don't test everything we want yet

This commit is contained in:
Brian Lawrence
2024-09-30 11:24:03 -07:00
parent 361203f830
commit f2da365659

View File

@@ -229,10 +229,11 @@ mod tests{
let mut pw: PartialWitness<F> = PartialWitness::new(); let mut pw: PartialWitness<F> = PartialWitness::new();
let data = builder.build::<C>(); let data = builder.build::<C>();
let proof = data.prove(pw).ok()?; let proof = data.prove(pw).unwrap();
// introspect to check the values of stuff // introspect to check the values of stuff
()
} }
#[test] #[test]