From c0177fe2b28eb09d1534e62370849c3f1d70b40f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 10 Mar 2020 12:29:09 +0100 Subject: [PATCH] resources: Try to fix a Go 1.15 go vet error --- resources/transform_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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