From: W. Trevor King Date: Mon, 18 Jan 2010 13:02:52 +0000 (-0500) Subject: Too much trouble to handle Git's lack of dir versioning in test_get_previous_children X-Git-Tag: 1.0.0~59^2~47^2~24 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1c42075f6b3ba35bbb32e3ec6549f30024ad7179;p=be.git Too much trouble to handle Git's lack of dir versioning in test_get_previous_children --- 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))