chore: fix resource tests

This commit is contained in:
Steven 2023-10-28 10:51:03 +08:00
parent ac81d856f6
commit dca712d273

View file

@ -89,6 +89,9 @@ func (s *Store) DeleteResource(ctx context.Context, delete *DeleteResource) erro
if err != nil {
return errors.Wrap(err, "failed to get resource")
}
if resource == nil {
return errors.Wrap(nil, "resource not found")
}
// Delete the local file.
if resource.InternalPath != "" {