fix formatting error (#8758)

Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
release-2.16 v2.16.11
Matt Butcher 5 years ago
parent 077ffec414
commit 73b28bab84
No known key found for this signature in database
GPG Key ID: DCD5F5E5EF32C345

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

Loading…
Cancel
Save