diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-18 08:02:52 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-18 08:02:52 -0500 |
commit | 1c42075f6b3ba35bbb32e3ec6549f30024ad7179 (patch) | |
tree | 67bd97b1e86db8e753eccdb8c4c4a0abe530fa76 /libbe/storage | |
parent | 8688804803235e1ca472526ed1904599bfba8e6c (diff) | |
download | bugseverywhere-1c42075f6b3ba35bbb32e3ec6549f30024ad7179.tar.gz |
Too much trouble to handle Git's lack of dir versioning in test_get_previous_children
Diffstat (limited to 'libbe/storage')
-rw-r--r-- | libbe/storage/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/base.py b/libbe/storage/base.py index 1b0ceba..d88f802 100644 --- a/libbe/storage/base.py +++ b/libbe/storage/base.py @@ -897,7 +897,7 @@ if TESTING == True: children = [] for i in range(10): new_child = str(i) - self.s.add(new_child, 'parent', directory=(i % 2 == 0)) + self.s.add(new_child, 'parent') self.s.set(new_child, self.val) revs.append(self.s.commit('%s: %d' % (self.commit_msg, i), self.commit_body)) |