From 227a04d771c98f858663b56bd1bc10640097751d Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Sun, 4 Mar 2012 08:06:26 +1100 Subject: [PATCH] text/template: one more test case Missed a case for variadic functions with too few arguments. The code passes, and with the right error, but might as well record the test case. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5732050 --- src/pkg/text/template/exec_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pkg/text/template/exec_test.go b/src/pkg/text/template/exec_test.go index 83ca0022ba..70ab39cad2 100644 --- a/src/pkg/text/template/exec_test.go +++ b/src/pkg/text/template/exec_test.go @@ -318,7 +318,8 @@ var execTests = []execTest{ {".BinaryFuncBad0", "{{call .BinaryFunc 1 3}}", "", tVal, false}, {".BinaryFuncBad1", "{{call .BinaryFunc `1` 3}}", "", tVal, false}, {".VariadicFuncBad0", "{{call .VariadicFunc 3}}", "", tVal, false}, - {".VariadicFuncIntBad0", "{{call .VariadicFuncInt `x`}}", "", tVal, false}, + {".VariadicFuncIntBad0", "{{call .VariadicFuncInt}}", "", tVal, false}, + {".VariadicFuncIntBad`", "{{call .VariadicFuncInt `x`}}", "", tVal, false}, // Pipelines. {"pipeline", "-{{.Method0 | .Method2 .U16}}-", "-Method2: 16 M0-", tVal, true}, -- 2.50.0