diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-31 04:25:21 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-31 04:25:21 -0400 |
commit | c0e6288158f30802866495c5ae433474c7daf16e (patch) | |
tree | 5774b256109ff9a86c1f87e63f8348c59743273f /libbe | |
parent | 3a56bcd8744192de75e69b595056dfe0a43680a2 (diff) | |
download | bugseverywhere-c0e6288158f30802866495c5ae433474c7daf16e.tar.gz |
Fixed libbe.bugdir.BugDirTestCase.testComments(sync_with_disk=False).
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/bugdir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py index 1bb307c..8ec5a31 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -738,7 +738,7 @@ class BugDirTestCase(unittest.TestCase): if index == 0: repLoaded = comment self.failUnless(repLoaded.uuid == rep.uuid, repLoaded.uuid) - self.failUnless(comment.sync_with_disk == True, + self.failUnless(comment.sync_with_disk == sync_with_disk, comment.sync_with_disk) self.failUnless(comment.content_type == "text/plain", comment.content_type) |