Unverified Commit 73b28bab authored by Matt Butcher's avatar Matt Butcher
Browse files

fix formatting error (#8758)


Signed-off-by: default avatarMatt Butcher <matt.butcher@microsoft.com>
No related merge requests found
Showing with 2 additions and 1 deletion
+2 -1
......@@ -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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment