From 4aa2edb16458ee2baf6bf28860eaa61f8e18fdd2 Mon Sep 17 00:00:00 2001 From: Gilbert Chen Date: Tue, 21 Nov 2017 22:22:17 -0500 Subject: [PATCH] Fixed a test build error caused by the new bit-identical argument --- src/duplicacy_backupmanager_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duplicacy_backupmanager_test.go b/src/duplicacy_backupmanager_test.go index 551e87e..ecb73ea 100644 --- a/src/duplicacy_backupmanager_test.go +++ b/src/duplicacy_backupmanager_test.go @@ -227,11 +227,11 @@ func TestBackupManager(t *testing.T) { time.Sleep(time.Duration(delay) * time.Second) if testFixedChunkSize { - if !ConfigStorage(storage, 16384, 100, 64*1024, 64*1024, 64*1024, password, nil) { + if !ConfigStorage(storage, 16384, 100, 64*1024, 64*1024, 64*1024, password, nil, false) { t.Errorf("Failed to initialize the storage") } } else { - if !ConfigStorage(storage, 16384, 100, 64*1024, 256*1024, 16*1024, password, nil) { + if !ConfigStorage(storage, 16384, 100, 64*1024, 256*1024, 16*1024, password, nil, false) { t.Errorf("Failed to initialize the storage") } }