From bff19522680159b762c6da39b85b9c77a2adb31f Mon Sep 17 00:00:00 2001 From: forgedhallpass <13679401+forgedhallpass@users.noreply.github.com> Date: Mon, 17 Jan 2022 13:41:05 +0200 Subject: [PATCH] test: introduce 'concat' DSL function * removed irrelevant test case (covered elsewhere) --- v2/pkg/protocols/common/expressions/variables_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/v2/pkg/protocols/common/expressions/variables_test.go b/v2/pkg/protocols/common/expressions/variables_test.go index 113e0690..61d07135 100644 --- a/v2/pkg/protocols/common/expressions/variables_test.go +++ b/v2/pkg/protocols/common/expressions/variables_test.go @@ -13,7 +13,6 @@ func TestUnresolvedVariablesCheck(t *testing.T) { err error }{ {"{{test}}", errors.New("unresolved variables found: test")}, - {"{{1+1}}", nil}, {"{{test}}/{{another}}", errors.New("unresolved variables found: test,another")}, {"test", nil}, {"%7b%7btest%7d%7d", errors.New("unresolved variables found: test")},