diff options
author | Lukasz Rajewski <lukasz.rajewski@orange.com> | 2021-10-25 22:21:16 +0200 |
---|---|---|
committer | Lukasz Rajewski <lukasz.rajewski@orange.com> | 2021-10-25 22:21:16 +0200 |
commit | 3f0da55c0183e9da2f4658308dee1915338266aa (patch) | |
tree | c2b9b4ad06786e51bf9262cb3d0dfacad7ee9853 /src/k8splugin/internal/helm/helm_test.go | |
parent | 6c28e5a7ca5a0688f5aefad010e0a3071ff6fe0b (diff) |
Fix resolution of values for Config API0.9.3
Issue-ID: MULTICLOUD-1414
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com>
Change-Id: Ibca5846ffe083bfc4d505c4c3c13efac2c6e2426
Diffstat (limited to 'src/k8splugin/internal/helm/helm_test.go')
-rw-r--r-- | src/k8splugin/internal/helm/helm_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/k8splugin/internal/helm/helm_test.go b/src/k8splugin/internal/helm/helm_test.go index 951ff92b..8f0269ab 100644 --- a/src/k8splugin/internal/helm/helm_test.go +++ b/src/k8splugin/internal/helm/helm_test.go @@ -95,7 +95,7 @@ func TestProcessValues(t *testing.T) { for _, testCase := range testCases { t.Run(testCase.label, func(t *testing.T) { tc := NewTemplateClient("1.12.3", "testnamespace", "testreleasename") - out, err := tc.processValues(testCase.valueFiles, testCase.values) + out, err := tc.ProcessValues(testCase.valueFiles, testCase.values) if err != nil { if testCase.expectedError == "" { t.Fatalf("Got an error %s", err) |