Skip to content

Commit

Permalink
fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
simar7 committed Apr 6, 2024
1 parent 033e985 commit c397b69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/iac/scanners/helm/test/option_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ func Test_helm_parser_with_options_with_kube_versions(t *testing.T) {

var opts []options.ParserOption

opts = append(opts, parser2.OptionWithKubeVersion(test.kubeVersion))
opts = append(opts, parser.OptionWithKubeVersion(test.kubeVersion))

helmParser, err := parser2.New(chartName, opts...)
helmParser, err := parser.New(chartName, opts...)
if test.expectedError != "" {
require.EqualError(t, err, test.expectedError)
return
Expand Down

0 comments on commit c397b69

Please sign in to comment.