Skip to content

Commit

Permalink
fix: error message
Browse files Browse the repository at this point in the history
  • Loading branch information
vsukhin committed Jun 12, 2023
1 parent e264c6c commit 4f480dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/kubectl-testkube/commands/common/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func GetClient(cmd *cobra.Command) (client.Client, string, error) {
apiURI := cmd.Flag("api-uri").Value.String()
oauthEnabled, err := strconv.ParseBool(cmd.Flag("oauth-enabled").Value.String())
if err != nil {
return nil, "", fmt.Errorf("parsing fla value %w", err)
return nil, "", fmt.Errorf("parsing flag value %w", err)
}

options := client.Options{
Expand Down

0 comments on commit 4f480dc

Please sign in to comment.