diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-27 02:37:41 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-27 02:37:41 -0400 |
commit | 4389edb63921d5bad4335ea6307f48c8305ba1fd (patch) | |
tree | 8ab78571349fb30e249d0b40800be93ed2fcaac4 /test/ConfirmTests.py | |
parent | 06365aac05bb77deb7ef2e6f82d7b6806ee77f92 (diff) | |
download | fork-ledger-4389edb63921d5bad4335ea6307f48c8305ba1fd.tar.gz fork-ledger-4389edb63921d5bad4335ea6307f48c8305ba1fd.tar.bz2 fork-ledger-4389edb63921d5bad4335ea6307f48c8305ba1fd.zip |
Normalize "dots" output from some of the tests
Diffstat (limited to 'test/ConfirmTests.py')
-rwxr-xr-x | test/ConfirmTests.py | 4 |
1 files changed, 2 insertions, 2 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 |