Skip to content

Commit f7a9ae4

Browse files
committed
fix: correct import alias for runtime package in node tests
Signed-off-by: Harsh <harshmastic@gmail.com>
1 parent 4c664bb commit f7a9ae4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/ddc/goosefs/node_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
v1 "k8s.io/api/core/v1"
3232
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3333
"k8s.io/apimachinery/pkg/labels"
34-
runtimeschema "k8s.io/apimachinery/pkg/runtime"
34+
"k8s.io/apimachinery/pkg/runtime"
3535
"k8s.io/utils/ptr"
3636
"sigs.k8s.io/controller-runtime/pkg/client"
3737
)
@@ -65,7 +65,7 @@ var _ = Describe("GooseFSEngine", func() {
6565

6666
DescribeTable("should sync schedule info to cache nodes correctly",
6767
func(fields fields, expectedNodeNames []string) {
68-
runtimeObjs := []runtimeschema.Object{}
68+
runtimeObjs := []runtime.Object{}
6969
runtimeObjs = append(runtimeObjs, fields.worker)
7070

7171
if fields.ds != nil {

0 commit comments

Comments
 (0)