1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-19 17:53:23 +00:00

Fixed format argument errors

This commit is contained in:
Gilbert Chen
2018-05-24 11:37:52 -04:00
parent aadd2aa390
commit f80a5b1025
4 changed files with 5 additions and 5 deletions

View File

@@ -514,7 +514,7 @@ func TestStorage(t *testing.T) {
} else {
err = storage.DeleteFile(0, filePath)
if err != nil {
t.Errorf("Failed to delete file %s: %v", filePath)
t.Errorf("Failed to delete file %s: %v", filePath, err)
} else {
time.Sleep(time.Duration(delay) * time.Second)
filePath, exist, _, err = storage.FindChunk(0, chunks[1], true)