diff --git a/pkg/chart/chart.go b/pkg/chart/chart.go index 0b606b6..8728e52 100644 --- a/pkg/chart/chart.go +++ b/pkg/chart/chart.go @@ -389,11 +389,11 @@ func (t *Testing) ComputeChangedChartDirectories() ([]string, error) { mergeBase, err := t.git.MergeBase(fmt.Sprintf("%s/%s", cfg.Remote, cfg.TargetBranch), "HEAD") if err != nil { - return nil, errors.Wrap(err, "Could not determined changed charts: Error identifying merge base.") + return nil, errors.Wrap(err, "Could not determine changed charts: Error identifying merge base.") } allChangedChartFiles, err := t.git.ListChangedFilesInDirs(mergeBase, cfg.ChartDirs...) if err != nil { - return nil, errors.Wrap(err, "Could not determined changed charts: Error icreating diff.") + return nil, errors.Wrap(err, "Could not determine changed charts: Error creating diff.") } var changedChartDirs []string