From 7c83fbd5c0e4acc87ba4ea412be823e235e3c38c Mon Sep 17 00:00:00 2001 From: Danny Krainas Date: Fri, 27 Oct 2017 15:12:32 -0400 Subject: [PATCH] fix replaceEnvvars test and clear build --- plugin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_test.go b/plugin_test.go index 63f6a47..692a94e 100644 --- a/plugin_test.go +++ b/plugin_test.go @@ -204,7 +204,7 @@ func TestReplaceEnvvars(t *testing.T) { prefix := "MY" testText := "this should be ${TAG} now ${TAG}" result := getEnvVars(testText) - resolved := replaceEnvvars(result, prefix, testText) + resolved := replaceEnvvars(result, prefix, testText, false) if !strings.Contains(resolved, tag) { t.Errorf("EnvVar MY_TAG no replaced by %s -- %s \n", tag, resolved) }