test: fix gofmt lint

Signed-off-by: William Wang <williamw0825@gmail.com>
This commit is contained in:
William Wang 2025-11-28 19:41:27 +08:00
parent de441f14bb
commit d38e482133

View File

@ -257,7 +257,7 @@ func TestParseValue(t *testing.T) {
input: "{{ getStringSlice .foo \"foo\" }}",
variable: map[string]any{
"foo": map[string][]string{
"foo": []string{"bar1", "bar2"},
"foo": {"bar1", "bar2"},
},
},
excepted: []byte("[bar1 bar2]"),