coverage.py: fix typo successully -> successfully

This commit is contained in:
Johannes Schauer Marin Rodrigues 2022-05-29 09:33:18 +02:00
parent 86f616996d
commit 5ea760920d
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -231,7 +231,7 @@ def main():
if args.maxfail and len(failed) >= args.maxfail:
break
print(
"successully ran %d tests" % (len(tests) - len(skipped) - len(failed)),
"successfully ran %d tests" % (len(tests) - len(skipped) - len(failed)),
file=sys.stderr,
)
if skipped: