fix: use nonexistent rather than inexistent

Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
pull/6578/head
Matthew Fisher 6 years ago
parent 99b8a0d0d7
commit a31d4ad43e
No known key found for this signature in database
GPG Key ID: 92AA783CBAAE8E3B

@ -107,12 +107,12 @@ func TestResolve(t *testing.T) {
name: "repo from valid path under charts path", name: "repo from valid path under charts path",
req: &chartutil.Requirements{ req: &chartutil.Requirements{
Dependencies: []*chartutil.Dependency{ Dependencies: []*chartutil.Dependency{
{Name: "inexistentdependency", Repository: "", Version: "0.1.0"}, {Name: "nonexistentdependency", Repository: "", Version: "0.1.0"},
}, },
}, },
expect: &chartutil.RequirementsLock{ expect: &chartutil.RequirementsLock{
Dependencies: []*chartutil.Dependency{ Dependencies: []*chartutil.Dependency{
{Name: "inexistentlocaldependency", Repository: "", Version: "0.1.0"}, {Name: "nonexistentlocaldependency", Repository: "", Version: "0.1.0"},
}, },
}, },
err: true, err: true,

Loading…
Cancel
Save