test: fix failed UT

This commit is contained in:
HFO4
2022-10-15 09:02:28 +08:00
parent 63b536e5db
commit 6b0b44f6d0
2 changed files with 2 additions and 2 deletions

View File

@@ -224,7 +224,7 @@ func (folder *Folder) CopyFolderTo(folderID uint, dstFolder *Folder) (size uint6
} else if IDCache, ok := newIDCache[*folder.ParentID]; ok {
newID = IDCache
} else {
util.Log().Warning("Failed to get parent folder %q", folder.ParentID)
util.Log().Warning("Failed to get parent folder %q", *folder.ParentID)
return size, errors.New("Failed to get parent folder")
}