Unverified Commit a31d4ad4 authored by Matthew Fisher's avatar Matthew Fisher
Browse files

fix: use nonexistent rather than inexistent


Signed-off-by: default avatarMatthew Fisher <matt.fisher@microsoft.com>
Showing with 2 additions and 2 deletions
+2 -2
......@@ -107,12 +107,12 @@ func TestResolve(t *testing.T) {
name: "repo from valid path under charts path",
req: &chartutil.Requirements{
Dependencies: []*chartutil.Dependency{
{Name: "inexistentdependency", Repository: "", Version: "0.1.0"},
{Name: "nonexistentdependency", Repository: "", Version: "0.1.0"},
},
},
expect: &chartutil.RequirementsLock{
Dependencies: []*chartutil.Dependency{
{Name: "inexistentlocaldependency", Repository: "", Version: "0.1.0"},
{Name: "nonexistentlocaldependency", Repository: "", Version: "0.1.0"},
},
},
err: true,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment