Skip to content

Commit

Permalink
tweak unsound-verified message
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Oct 8, 2024
1 parent b948562 commit 6a67838
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1377,7 +1377,7 @@ def _raise_to_user(
add_note(the_error_hypothesis_found, line)

if verified_by:
msg = f"backend={verified_by!r} verified this test passes - please report that as a bug!"
msg = f"backend={verified_by!r} claimed to verify this test passes - please send them a bug report!"
add_note(err, msg)

raise the_error_hypothesis_found
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/tests/conjecture/test_alt_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ class UnsoundVerifierProvider(ExhaustibleProvider):

@pytest.mark.parametrize("provider", [ExhaustibleProvider, UnsoundVerifierProvider])
def test_notes_incorrect_verification(provider):
msg = "backend='p' verified this test passes - please report that as a bug!"
msg = "backend='p' claimed to verify this test passes - please send them a bug report!"
with temp_register_backend("p", provider):

@given(st.integers())
Expand Down

0 comments on commit 6a67838

Please sign in to comment.