Skip to content

Commit f25bcbe

Browse files
committed
init scheme
Signed-off-by: Oleg <[email protected]>
1 parent 599b418 commit f25bcbe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

controllers/scripts_test.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
. "github.com/onsi/ginkgo/v2"
77
. "github.com/onsi/gomega"
88
v1 "k8s.io/api/core/v1"
9+
"k8s.io/apimachinery/pkg/runtime"
910

1011
"github.com/redhat-et/ipfs-operator/api/v1alpha1"
1112
"github.com/redhat-et/ipfs-operator/controllers"
@@ -18,7 +19,9 @@ var _ = Describe("Scripts", func() {
1819
var ctx context.Context
1920
BeforeEach(func() {
2021
ctx = context.TODO()
21-
ipfsReconciler = &controllers.IpfsReconciler{}
22+
ipfsReconciler = &controllers.IpfsReconciler{
23+
Scheme: &runtime.Scheme{},
24+
}
2225
ipfsConfigMap = &v1.ConfigMap{}
2326
ipfs = &v1alpha1.Ipfs{}
2427
})

0 commit comments

Comments
 (0)