diff options
-rw-r--r-- | resources/transform_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/transform_test.go b/resources/transform_test.go index e7235bc8c..6f1837279 100644 --- a/resources/transform_test.go +++ b/resources/transform_test.go @@ -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 |