From fd6265c054fc2a20bedb068f34347b1e9286306e Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Tue, 1 Sep 2026 17:34:54 -0700 Subject: [PATCH] docs(tests): clarify Hypothesis references --- tests/route_parity/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/route_parity/README.md b/tests/route_parity/README.md index 98a141a832d..bf396a9e82c 100644 --- a/tests/route_parity/README.md +++ b/tests/route_parity/README.md @@ -23,7 +23,7 @@ ## Hypothesis and property-based testing -- Hypothesis is Python libary for property-based testing +- Hypothesis is a Python library for property-based testing - Example-based tests use inputs selected by the test author - Property-based tests define strategies for valid inputs and properties that must hold for every generated example - Hypothesis generates combinations from those strategies and normally shrinks a failing example to a smaller reproducible case @@ -85,4 +85,4 @@ also compared against Python ## References - [Hypothesis documentation](https://hypothesis.readthedocs.io/en/latest/) -- [Hypothesis quick start](https://hypothesis.readthedocs.io/en/latest/quickstart.html) +- [Hypothesis documentation source](https://github.com/HypothesisWorks/hypothesis/tree/master/hypothesis/docs)