summaryrefslogtreecommitdiff
path: root/obnamlib/whole_file_checksummer_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'obnamlib/whole_file_checksummer_tests.py')
-rw-r--r--obnamlib/whole_file_checksummer_tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/obnamlib/whole_file_checksummer_tests.py b/obnamlib/whole_file_checksummer_tests.py
index c2addbec..c06becab 100644
--- a/obnamlib/whole_file_checksummer_tests.py
+++ b/obnamlib/whole_file_checksummer_tests.py
@@ -25,7 +25,7 @@ class WholeFileCheckSummerTests(unittest.TestCase):
def test_computes_nothing_if_repo_wants_no_checksum(self):
repo = FakeRepository(None)
- summer = obnamlib.WholeFileCheckSummer(repo)
+ summer = obnamlib.WholeFileCheckSummer(None)
chunk = 'hello'
token = repo.prepare_chunk_for_indexes(chunk)
summer.append_chunk(chunk, token)
@@ -33,7 +33,7 @@ class WholeFileCheckSummerTests(unittest.TestCase):
def test_computes_checksum_for_md5(self):
repo = FakeRepository(obnamlib.REPO_FILE_MD5)
- summer = obnamlib.WholeFileCheckSummer(repo)
+ summer = obnamlib.WholeFileCheckSummer(obnamlib.REPO_FILE_MD5)
chunk = 'hello'
token = repo.prepare_chunk_for_indexes(chunk)
summer.append_chunk(chunk, token)
@@ -43,7 +43,7 @@ class WholeFileCheckSummerTests(unittest.TestCase):
def test_computes_checksum_for_sha512(self):
repo = FakeRepository(obnamlib.REPO_FILE_SHA512)
- summer = obnamlib.WholeFileCheckSummer(repo)
+ summer = obnamlib.WholeFileCheckSummer(obnamlib.REPO_FILE_SHA512)
chunk = 'hello'
token = repo.prepare_chunk_for_indexes(chunk)
summer.append_chunk(chunk, token)
@@ -58,7 +58,7 @@ class FakeRepository(object):
def __init__(self, file_key):
self._file_key = file_key
- def get_file_checksum_key(self):
+ def get_client_checksum_key(self, client_name):
return self._file_key
def prepare_chunk_for_indexes(self, data):