Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kqzh committed Oct 12, 2023
1 parent 2d2e2ca commit 3dff04d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/e2e/envfuncsext/nebulacluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package envfuncsext
import (
"context"
stderrors "errors"

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/klog/v2"
"sigs.k8s.io/e2e-framework/klient/wait"
Expand Down Expand Up @@ -86,7 +87,7 @@ func InstallNebulaCluster(opts ...NebulaClusterOption) env.Func {
o := (&NebulaClusterOptions{}).
WithOptions(
WithNebulaClusterHelmOptions(WithHelmOptions(
// default values
// default values
)),
).WithOptions(opts...)

Expand All @@ -109,7 +110,7 @@ func UpgradeNebulaCluster(opts ...NebulaClusterOption) env.Func {
o := (&NebulaClusterOptions{}).
WithOptions(
WithNebulaClusterHelmOptions(WithHelmOptions(
// default values
// default values
)),
).WithOptions(opts...)

Expand All @@ -132,7 +133,7 @@ func WaitNebulaClusterReady(opts ...NebulaClusterOption) env.Func {
o := (&NebulaClusterOptions{}).
WithOptions(
WithNebulaClusterHelmOptions(WithHelmOptions(
// default values
// default values
)),
).WithOptions(opts...)

Expand Down Expand Up @@ -191,7 +192,7 @@ func UninstallNebulaCluster(opts ...NebulaClusterOption) env.Func {
o := (&NebulaClusterOptions{}).
WithOptions(
WithNebulaClusterHelmOptions(WithHelmOptions(
// default values
// default values
)),
).WithOptions(opts...)

Expand Down

0 comments on commit 3dff04d

Please sign in to comment.