File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ import (
2727 "time"
2828
2929 "sigs.k8s.io/controller-runtime/pkg/log"
30- ctrllog "sigs.k8s.io/controller-runtime/pkg/log"
3130 "sigs.k8s.io/controller-runtime/pkg/log/zap"
3231
3332 "github.com/llm-d/llm-d-inference-scheduler/pkg/common"
@@ -41,7 +40,7 @@ func newTestContext() context.Context {
4140 zap .WriteTo (GinkgoWriter ),
4241 zap .UseDevMode (true ),
4342 )
44- ctrllog .SetLogger (logger )
43+ log .SetLogger (logger )
4544 ctx := context .Background ()
4645 log .IntoContext (ctx , logger ) // not strictly needed since we called SetLogger to set default
4746 return ctx
Original file line number Diff line number Diff line change 11// Package utils contains utilities for testing
2+ //
3+ //revive:disable:var-naming
24package utils
35
6+ //revive:enable:var-naming
7+
48import (
59 "net"
610)
You can’t perform that action at this time.
0 commit comments