Skip to content

Commit

Permalink
fix(tests): Fix tests for release
Browse files Browse the repository at this point in the history
  • Loading branch information
simar7 committed Sep 3, 2024
1 parent 011fb5a commit 952ed7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/verify-bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func createTrivyContainer(ctx context.Context, trivyVersion string, regIP string
reqTrivy := testcontainers.ContainerRequest{
Image: fmt.Sprintf("aquasec/trivy:%s", trivyVersion),
AlwaysPullImage: true,
Cmd: []string{"--debug", "config", "--include-deprecated-checks=false", fmt.Sprintf("--checks-bundle-repository=%s:5111/defsec-test:latest", regIP), "/testdata"},
Cmd: []string{"--debug", "config", "--include-deprecated-checks=false", !fmt.Sprintf("--checks-bundle-repository=%s:5111/defsec-test:latest", regIP), "/testdata"},
HostConfigModifier: func(config *container.HostConfig) {
config.NetworkMode = "host"
config.Mounts = []mount.Mount{
Expand Down

0 comments on commit 952ed7f

Please sign in to comment.