From 98553f074123090de668f2b2a9b82e74bd7d2d8f Mon Sep 17 00:00:00 2001 From: mj-will Date: Wed, 22 Jan 2025 16:15:27 +0000 Subject: [PATCH] TST: fix existing flowproposal tests --- .../test_flowproposal/test_flowproposal/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_proposal/test_flowproposal/test_flowproposal/conftest.py b/tests/test_proposal/test_flowproposal/test_flowproposal/conftest.py index 385f835d..d561bc9b 100644 --- a/tests/test_proposal/test_flowproposal/test_flowproposal/conftest.py +++ b/tests/test_proposal/test_flowproposal/test_flowproposal/conftest.py @@ -16,6 +16,7 @@ def proposal(rng): proposal = create_autospec(FlowProposal) proposal._initialised = False proposal.accumulate_weights = False + proposal.enforce_likelihood_threshold = False proposal.map_to_unit_hypercube = False proposal.rng = rng return proposal