--- a/tests/test-revlog-ancestry.py Thu Aug 21 10:55:24 2008 +0200
+++ b/tests/test-revlog-ancestry.py Thu Aug 21 11:35:17 2008 +0200
@@ -49,26 +49,26 @@
# Ancestors
print 'Ancestors of 5'
for r in repo.changelog.ancestors(5):
- print r,
+ print r,
print '\nAncestors of 6 and 5'
for r in repo.changelog.ancestors(6, 5):
- print r,
+ print r,
print '\nAncestors of 5 and 4'
for r in repo.changelog.ancestors(5, 4):
- print r,
+ print r,
# Descendants
print '\n\nDescendants of 5'
for r in repo.changelog.descendants(5):
- print r,
+ print r,
print '\nDescendants of 5 and 3'
for r in repo.changelog.descendants(5, 3):
- print r,
+ print r,
print '\nDescendants of 5 and 4'
for r in repo.changelog.descendants(5, 4):
- print r,
+ print r,