Skip to content

Commit 5136dca

Browse files
committed
Fix lint issues
1 parent d4755f6 commit 5136dca

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pkg/cloudprovider/metal/node_controller_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@ var _ = Describe("NodeReconciler", func() {
4040
},
4141
},
4242
Spec: metalv1alpha1.ServerSpec{
43-
UUID: "12345",
44-
Power: "On",
43+
SystemUUID: "12345",
44+
Power: "On",
4545
},
4646
}
47+
m
4748
Expect(k8sClient.Create(ctx, server)).To(Succeed())
4849
DeferCleanup(k8sClient.Delete, server)
4950

pkg/cloudprovider/metal/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var _ = BeforeSuite(func() {
7272
// Note that you must have the required binaries setup under the bin directory to perform
7373
// the tests directly. When we run make test it will be setup and used automatically.
7474
BinaryAssetsDirectory: filepath.Join("..", "..", "..", "bin", "k8s",
75-
fmt.Sprintf("1.34.1-%s-%s", runtime.GOOS, runtime.GOARCH)),
75+
fmt.Sprintf("1.34.0-%s-%s", runtime.GOOS, runtime.GOARCH)),
7676
}
7777

7878
var err error

0 commit comments

Comments
 (0)