summaryrefslogtreecommitdiff
path: root/test/RegressTests.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-27 02:37:41 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-27 02:37:41 -0400
commit4389edb63921d5bad4335ea6307f48c8305ba1fd (patch)
tree8ab78571349fb30e249d0b40800be93ed2fcaac4 /test/RegressTests.py
parent06365aac05bb77deb7ef2e6f82d7b6806ee77f92 (diff)
downloadfork-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/RegressTests.py')
-rwxr-xr-xtest/RegressTests.py4
1 files changed, 2 insertions, 2 deletions
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])