Skip to content

Commit

Permalink
resources: Try to fix a Go 1.15 go vet error
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Mar 10, 2020
1 parent 5914f91 commit c0177fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/transform_test.go
Expand Up @@ -323,7 +323,7 @@ func TestTransform(t *testing.T) {

transformations := make([]ResourceTransformation, count)
for i := 0; i < count; i++ {
transformations[i] = createContentReplacer(fmt.Sprintf("t%d", i), fmt.Sprint(i), string(i+65))
transformations[i] = createContentReplacer(fmt.Sprintf("t%d", i), fmt.Sprint(i), string(rune(i+65)))
}

var countstr strings.Builder
Expand Down

0 comments on commit c0177fe

Please sign in to comment.