Skip to content

Commit

Permalink
Revert "sys.stdout.write"
Browse files Browse the repository at this point in the history
This reverts commit bb002bc.
  • Loading branch information
WillGibson committed Jan 15, 2025
1 parent bb002bc commit de1020d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mutmut/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,14 +894,14 @@ def run_forced_fail_test(runner):
print("FAILED: Unable to force test failures")
raise SystemExit(1)
except MutmutProgrammaticFailException:
sys.stdout.write(' done - c')
print(' done - c')
pass
# catcher.stop()
sys.stdout.write(' done - a')
print(' done - a')
catcher.dump_output()

os.environ['MUTANT_UNDER_TEST'] = ''
sys.stdout.write(' done - b')
print(' done - b')


class CatchOutput:
Expand Down

0 comments on commit de1020d

Please sign in to comment.