mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 13:33:09 +00:00
Simplify the cleanup_Alice_and_Bob callback.
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
parent
94a2ef0095
commit
c2d672e0b6
@ -411,16 +411,16 @@ class MagicFolderTestMixin(MagicFolderCLITestMixin, ShouldFailMixin, ReallyEqual
|
||||
print "cleanup alice bob test\n"
|
||||
d = defer.succeed(None)
|
||||
d.addCallback(lambda ign: self.alice_magicfolder.finish())
|
||||
alice_clock.advance(0)
|
||||
|
||||
def clean_bob(_):
|
||||
def clean_bob(ign):
|
||||
d2 = self.bob_magicfolder.finish()
|
||||
d2.addCallback(lambda ign: result)
|
||||
bob_clock.advance(0)
|
||||
return d2
|
||||
d.addCallback(clean_bob)
|
||||
alice_clock.advance(0)
|
||||
d.addCallback(lambda ign: result)
|
||||
return d
|
||||
d.addCallback(cleanup_Alice_and_Bob)
|
||||
d.addBoth(cleanup_Alice_and_Bob)
|
||||
return d
|
||||
|
||||
class MockTest(MagicFolderTestMixin, unittest.TestCase):
|
||||
|
Loading…
Reference in New Issue
Block a user