Skip to content

Commit 63c5298

Browse files
committed
get conjecturedata from runner
1 parent f032d00 commit 63c5298

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • hypothesis-python/src/hypothesis

hypothesis-python/src/hypothesis/core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,9 @@ def run_engine(self):
10371037
info = falsifying_example.extra_information
10381038
fragments = []
10391039

1040-
ran_example = ConjectureData.for_buffer(falsifying_example.buffer)
1040+
ran_example = runner.new_conjecture_data_for_buffer(
1041+
falsifying_example.buffer
1042+
)
10411043
ran_example.slice_comments = falsifying_example.slice_comments
10421044
assert info.__expected_exception is not None
10431045
try:

0 commit comments

Comments
 (0)