From 654d92481d6c62b5b30a7b53a711720819a5c359 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Mon, 27 May 2013 22:27:35 +0100 Subject: [PATCH] test_storage.py: clean up arguments to FakeAccount methods. Signed-off-by: Daira Hopwood --- src/allmydata/test/test_storage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/allmydata/test/test_storage.py b/src/allmydata/test/test_storage.py index ddde6f37..573dcb69 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: -- 2.45.2