summaryrefslogtreecommitdiffstats
path: root/src/k8splugin/internal/helm/helm_test.go
diff options
context:
space:
mode:
authorRitu Sood <ritu.sood@intel.com>2021-10-04 22:39:11 +0000
committerGerrit Code Review <gerrit@onap.org>2021-10-04 22:39:11 +0000
commit54b79141744e713848ae46f3170c637bc7d08ef8 (patch)
tree0caadfb0fda2168d13dcbf44b8e07bb4c934831e /src/k8splugin/internal/helm/helm_test.go
parentd4f772ef1c8f89fed4d4fd50a783628ef9ea4467 (diff)
parent3766e380c40dc1e4c839372dcdc0c71a972ffa70 (diff)
Merge "Fixed installation of CRD resources"
Diffstat (limited to 'src/k8splugin/internal/helm/helm_test.go')
-rw-r--r--src/k8splugin/internal/helm/helm_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/k8splugin/internal/helm/helm_test.go b/src/k8splugin/internal/helm/helm_test.go
index 29d446fa..b805b59b 100644
--- a/src/k8splugin/internal/helm/helm_test.go
+++ b/src/k8splugin/internal/helm/helm_test.go
@@ -20,11 +20,12 @@ package helm
import (
"crypto/sha256"
"fmt"
- "gopkg.in/yaml.v2"
"io/ioutil"
"path/filepath"
"strings"
"testing"
+
+ "gopkg.in/yaml.v2"
)
func TestProcessValues(t *testing.T) {
@@ -202,7 +203,7 @@ func TestGenerateKubernetesArtifacts(t *testing.T) {
for _, testCase := range testCases {
t.Run(testCase.label, func(t *testing.T) {
tc := NewTemplateClient("1.12.3", "testnamespace", "testreleasename")
- out, hooks, err := tc.GenerateKubernetesArtifacts(testCase.chartPath, testCase.valueFiles,
+ out, _, hooks, err := tc.GenerateKubernetesArtifacts(testCase.chartPath, testCase.valueFiles,
testCase.values)
if err != nil {
if testCase.expectedError == "" {