diff options
-rwxr-xr-x | test/ConfirmTests.py | 4 | ||||
-rwxr-xr-x | test/RegressTests.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/ConfirmTests.py b/test/ConfirmTests.py index 3f0c4eb7..4b64af7c 100755 --- a/test/ConfirmTests.py +++ b/test/ConfirmTests.py @@ -93,10 +93,10 @@ def confirm_report(args): for cmd in commands: if confirm_report("%s --args-only --verify --columns=80 %s" % (ledger, re.sub('\$tests', tests, cmd))): - print ".", + sys.stdout.write(".") succeeded += 1 else: - print "E", + sys.stdout.write("E") failed += 1 print diff --git a/test/RegressTests.py b/test/RegressTests.py index 088a4263..2320a83a 100755 --- a/test/RegressTests.py +++ b/test/RegressTests.py @@ -124,9 +124,9 @@ def test_regression(test_file): if success: succeeded += 1 - print ".", + sys.stdout.write(".") else: - print "E", + sys.stdout.write("E") if not use_stdin: os.remove(tempdata[1]) |