Skip to content

Commit 065ce99

Browse files
committed
chore: Fix linter warnings
1 parent 3fc0d82 commit 065ce99

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/testutils/suite.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77

88
"github.com/go-logr/logr"
9-
. "github.com/onsi/ginkgo/v2"
9+
. "github.com/onsi/ginkgo/v2" //nolint:stylecheck
1010

1111
"go.uber.org/zap/zapcore"
1212
appsv1 "k8s.io/api/apps/v1"
@@ -47,7 +47,7 @@ func NewSuite(loglevel int) (*SuiteContext, error) {
4747
DestWriter: GinkgoWriter,
4848
StacktraceLevel: zapcore.Level(4),
4949
TimeEncoder: zapcore.RFC3339NanoTimeEncoder,
50-
Level: zapcore.Level(loglevel),
50+
Level: zapcore.Level(loglevel), //nolint:gosec
5151
}
5252
log := zap.New(zap.UseFlagOptions(&opts))
5353
s.Log = log

0 commit comments

Comments
 (0)