Skip to content

Commit

Permalink
fixed error message typo for item block action
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Seago <[email protected]>
  • Loading branch information
sseago committed Oct 15, 2024
1 parent 34d4f18 commit 6fa81ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (s *ItemBlockActionGRPCServer) getImpl(name string) (ibav1.ItemBlockAction,

itemAction, ok := impl.(ibav1.ItemBlockAction)
if !ok {
return nil, errors.Errorf("%T is not a backup item action", impl)
return nil, errors.Errorf("%T is not an ItemBlock action", impl)

Check warning on line 48 in pkg/plugin/framework/itemblockaction/v1/item_block_action_server.go

View check run for this annotation

Codecov / codecov/patch

pkg/plugin/framework/itemblockaction/v1/item_block_action_server.go#L48

Added line #L48 was not covered by tests
}

return itemAction, nil
Expand Down

0 comments on commit 6fa81ec

Please sign in to comment.