Update chart version to v1.18.0-rc1 (#2576)

Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
This commit is contained in:
Sanket Sudake
2022-10-20 11:44:10 +05:30
committed by GitHub
parent 7eeb3ead66
commit ee790b3e1e
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ type GitRepo struct {
status git.Status
dirPath string
gitRepoRootPath string // absolute path of the root of the git repository
commitID string // commit ID the HEAD of the repository is poitning to
commitID string // commit ID the HEAD of the repository is pointing to
}
// NewGitRepo creates new GitRepo struct
+3 -3
View File
@@ -99,8 +99,8 @@ func TestGetStringValueFromEnv(t *testing.T) {
},
{
name: "string case",
value: "test sting",
want: "test sting",
value: "test string",
want: "test string",
wantErr: false,
},
}
@@ -134,7 +134,7 @@ func TestGetUIntValueFromEnv(t *testing.T) {
},
{
name: "string case",
value: "test sting",
value: "test string",
want: 0,
wantErr: true,
},