From 9a1e5e8eeba9731c48a8efe7981314dd8a2f46cd Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Wed, 25 Feb 2026 11:06:25 +0100 Subject: [PATCH] cmd/podman-tetsing: fix incorrect error message Signed-off-by: Paul Holzinger --- cmd/podman-testing/call.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/podman-testing/call.go b/cmd/podman-testing/call.go index b4c9ac38a8..00eb695f93 100644 --- a/cmd/podman-testing/call.go +++ b/cmd/podman-testing/call.go @@ -57,7 +57,7 @@ func ls(_ *cobra.Command, args []string) error { } reflectionClient := reflectionv1.NewServerReflectionClient(grpcClient) if reflectionClient == nil { - return fmt.Errorf("setting up client for reflection grpc service: %w", err) + return errors.New("setting up client for reflection grpc service") } info, err := reflectionClient.ServerReflectionInfo(ctx) if err != nil {