From: Daira Hopwood Date: Mon, 27 May 2013 21:27:35 +0000 (+0100) Subject: test_storage.py: clean up arguments to FakeAccount methods. X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=95182fe4ec66489fb8c2fcd1649d038a1aa709a8;p=tahoe-lafs%2Ftahoe-lafs.git test_storage.py: clean up arguments to FakeAccount methods. Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/test/test_storage.py b/src/allmydata/test/test_storage.py index f75fe3a8..6885cc52 100644 --- a/src/allmydata/test/test_storage.py +++ b/src/allmydata/test/test_storage.py @@ -65,11 +65,11 @@ from allmydata.web.storage import StorageStatus, remove_prefix class FakeAccount: def __init__(self, server): self.server = server - def add_share(self, storage_index, shnum, used_space, sharetype, commit=True): + def add_share(self, storage_index, shnum, used_space, sharetype): pass - def add_or_renew_default_lease(self, storage_index, shnum, commit=True): + def add_or_renew_default_lease(self, storage_index, shnum): pass - def mark_share_as_stable(self, storage_index, shnum, used_space, commit=True): + def mark_share_as_stable(self, storage_index, shnum, used_space): pass class FakeStatsProvider: