We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e5279e commit 276aed7Copy full SHA for 276aed7
hypothesis-python/src/hypothesis/internal/conjecture/shrinker.py
@@ -533,17 +533,9 @@ def s(n):
533
continue
534
535
self.debug(
536
- " * %s made %d call%s of which "
537
- "%d shrank and %d were misaligned, deleting %d byte%s."
538
- % (
539
- p.name,
540
- p.calls,
541
- s(p.calls),
542
- p.shrinks,
543
- p.misaligned,
544
- p.deletions,
545
- s(p.deletions),
546
- )
+ f" * {p.name} made {p.calls} call{s(p.calls)} of which "
+ f"{p.shrinks} shrank and {p.misaligned} were misaligned, "
+ f"deleting {p.deletions} byte{s(p.deletions)}."
547
)
548
self.debug("")
549
self.explain()
0 commit comments