@@ -630,13 +630,13 @@ func (s *ResourcesSuite) TestResourcesScale() {
630630 s .Run ("resources_scale with missing apiVersion returns error" , func () {
631631 toolResult , _ := s .CallTool ("resources_scale" , map [string ]interface {}{})
632632 s .Truef (toolResult .IsError , "call tool should fail" )
633- s .Equalf ("failed get/update resource scale, missing argument apiVersion" , toolResult .Content [0 ].(mcp.TextContent ).Text ,
633+ s .Equalf ("failed to get/update resource scale, missing argument apiVersion" , toolResult .Content [0 ].(mcp.TextContent ).Text ,
634634 "invalid error message, got %v" , toolResult .Content [0 ].(mcp.TextContent ).Text )
635635 })
636636 s .Run ("resources_scale with missing kind returns error" , func () {
637637 toolResult , _ := s .CallTool ("resources_scale" , map [string ]interface {}{"apiVersion" : "apps/v1" })
638638 s .Truef (toolResult .IsError , "call tool should fail" )
639- s .Equalf ("failed get/update resource scale, missing argument kind" , toolResult .Content [0 ].(mcp.TextContent ).Text ,
639+ s .Equalf ("failed to get/update resource scale, missing argument kind" , toolResult .Content [0 ].(mcp.TextContent ).Text ,
640640 "invalid error message, got %v" , toolResult .Content [0 ].(mcp.TextContent ).Text )
641641 })
642642 s .Run ("resources_scale with missing name returns error" , func () {
0 commit comments