Mercurial > p > roundup > code
changeset 8217:cd76d5d59c37
fix(web) issue2551382 - fix missing hypothesis case
Syntax error if hypothesis is not importable. Only affects python2 CI.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 16 Dec 2024 21:29:07 -0500 |
| parents | 03020f08a685 |
| children | 32aaf5dc562b |
| files | test/test_liveserver.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/test/test_liveserver.py Mon Dec 16 21:24:59 2024 -0500 +++ b/test/test_liveserver.py Mon Dec 16 21:29:07 2024 -0500 @@ -48,7 +48,7 @@ # define the decorator functions example = given = reproduce_failure = settings = noop_decorators_with_args # and stratgies using in decorators - binary = characters = emails, none = one_of = sampled_from = text = noop_strategy + binary = characters = emails = none = one_of = sampled_from = text = noop_strategy try:
