We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30921f4 commit 18cd732Copy full SHA for 18cd732
hypothesis-python/tests/conjecture/test_alt_backend.py
@@ -41,9 +41,9 @@ class PrngProvider(PrimitiveProvider):
41
# a very simple PRNG to choose each value. Dumb but efficient, and entirely
42
# independent of our real backend
43
44
- def __init__(self, conjecturedata: "ConjectureData", /) -> None:
+ def __init__(self, conjecturedata: "ConjectureData | None", /) -> None:
45
super().__init__(conjecturedata)
46
- self.prng = Random()
+ self.prng = Random(0)
47
48
def draw_boolean(
49
self,
0 commit comments