From f022a6f684e1485f1c50093a149f86b374d34196 Mon Sep 17 00:00:00 2001 From: Gilbert Chen Date: Fri, 22 Nov 2019 21:17:17 -0500 Subject: [PATCH] Fixed build errors in tests --- 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 c4f6fed..cff0965 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, false) { + 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, false) { + if !ConfigStorage(storage, 16384, 100, 64*1024, 256*1024, 16*1024, password, nil, false, "") { t.Errorf("Failed to initialize the storage") } }