Skip to content

Commit

Permalink
fix: disable failure persistance in nargo test fuzzing (#6777)
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite authored Dec 12, 2024
1 parent 5795a09 commit 68ff7bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tooling/nargo/src/ops/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,11 @@ pub fn run_test<B: BlackBoxFunctionSolver<FieldElement>>(
{
use acvm::acir::circuit::Program;
use noir_fuzzer::FuzzedExecutor;
use proptest::test_runner::Config;
use proptest::test_runner::TestRunner;
let runner = TestRunner::default();

let runner =
TestRunner::new(Config { failure_persistence: None, ..Config::default() });

let abi = compiled_program.abi.clone();
let debug = compiled_program.debug.clone();
Expand Down

0 comments on commit 68ff7bd

Please sign in to comment.