chore: fix resource tests

pull/2457/head
Steven 2 years ago
parent ac81d856f6
commit dca712d273

@ -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 != "" {

Loading…
Cancel
Save