diff --git a/azure/az/checker.go b/azure/az/checker.go index a29a7ac..2477bc3 100644 --- a/azure/az/checker.go +++ b/azure/az/checker.go @@ -2,7 +2,6 @@ package az import ( "context" - "fmt" "strings" "github.com/foomo/posh/pkg/log" @@ -18,5 +17,5 @@ func AuthChecker(ctx context.Context, l log.Logger) []check.Info { } else if strings.Contains(string(out), "az login") { return []check.Info{check.NewNoteInfo(name, "Unauthenticated")} } - return []check.Info{check.NewSuccessInfo(name, fmt.Sprintf("Authenticated"))} + return []check.Info{check.NewSuccessInfo(name, "Authenticated")} }