Merge branch 'master' into keep-history

This commit is contained in:
Erin Call
2020-01-02 12:29:32 -08:00
committed by GitHub
6 changed files with 20 additions and 7 deletions

View File

@@ -301,14 +301,16 @@ func (suite *PlanTestSuite) TestAddRepos() {
func (suite *PlanTestSuite) TestLint() {
cfg := Config{
Chart: "./flow",
Chart: "./flow",
LintStrictly: true,
}
steps := lint(cfg)
suite.Equal(1, len(steps))
want := &run.Lint{
Chart: "./flow",
Chart: "./flow",
Strict: true,
}
suite.Equal(want, steps[0])
}