From 4904cfc6788f1da5c6c86df72b152d25c7906961 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Mon, 4 May 2020 14:08:55 -0600 Subject: [PATCH] fixed a few newly merged templates that have spacing errors Signed-off-by: Matt Butcher --- pkg/lint/rules/template_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/lint/rules/template_test.go b/pkg/lint/rules/template_test.go index f466b1fa0..67452089b 100644 --- a/pkg/lint/rules/template_test.go +++ b/pkg/lint/rules/template_test.go @@ -180,11 +180,11 @@ kind: ConfigMap metadata: name: foo data: - myval1: {{default "val" .Values.mymap.key1 }} - myval2: {{default "val" .Values.mymap.key2 }} + myval1: {{ default "val" .Values.mymap.key1 }} + myval2: {{ default "val" .Values.mymap.key2 }} ` -// TestSTrictTemplatePrasingMapError is a regression test. +// TestStrictTemplatePrasingMapError is a regression test. // // The template engine should not produce an error when a map in values.yaml does // not contain all possible keys.