Skip to content

Commit b7fe49c

Browse files
author
Alan Christie
committed
Doc tweak
1 parent 9be83e3 commit b7fe49c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jote/jote.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,9 @@ def main() -> None:
361361
if test_fail_count and args.exit_on_failure:
362362
break
363363

364-
num_tests_passed: int = num_tests - test_fail_count
365364
# Success or failure?
365+
print(' ---')
366+
num_tests_passed: int = num_tests - test_fail_count
366367
dry_run: str = '[DRY RUN]' if args.dry_run else ''
367368
if test_fail_count:
368369
print()
@@ -371,7 +372,7 @@ def main() -> None:
371372
f' failed={test_fail_count}'
372373
f' {dry_run}')
373374
else:
374-
print(f'Done (Success) passed={num_tests_passed} {dry_run}')
375+
print(f'Done (OK) passed={num_tests_passed} {dry_run}')
375376

376377

377378
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)