Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit bfd90bc

Browse files
author
Michael Sauter
committed
Fix check
1 parent f4fa398 commit bfd90bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/odstasktest/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type InstallOptions struct {
2020
// InstallODSPipeline installs the ODS Pipeline Helm chart in the namespace
2121
// given in NamespaceConfig.
2222
func InstallODSPipeline(opts *InstallOptions) ttr.NamespaceOpt {
23-
if opts != nil {
23+
if opts == nil {
2424
opts = &InstallOptions{PrivateCert: false}
2525
}
2626
return func(cc *ttr.ClusterConfig, nc *ttr.NamespaceConfig) error {

0 commit comments

Comments
 (0)