summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--resources/transform_test.go2
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