fix formatting error (#8758)

Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
pull/8764/head
Matt Butcher 5 years ago committed by GitHub
parent 3a7b781f88
commit b9566b8799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,6 +19,7 @@ package helm // import "k8s.io/helm/pkg/helm"
import ( import (
"bytes" "bytes"
"errors" "errors"
"fmt"
"math/rand" "math/rand"
"strings" "strings"
"sync" "sync"
@ -332,7 +333,7 @@ func ReleaseMock(opts *MockReleaseOptions) *release.Release {
name := opts.Name name := opts.Name
if name == "" { if name == "" {
name = "testrelease-" + string(rand.Intn(100)) name = fmt.Sprintf("testrelease-%d", rand.Intn(100))
} }
var version int32 = 1 var version int32 = 1

Loading…
Cancel
Save