@@ -107,7 +107,7 @@ var _ = Describe("LifecycleImplementation", func() {
107107 ObjectDefinition : jobJSON ,
108108 }
109109
110- response , err := reconcileJob (ctx , cluster , request , pluginConfiguration , nil )
110+ response , err := reconcileJob (ctx , cluster , request , nil )
111111 Expect (err ).NotTo (HaveOccurred ())
112112 Expect (response ).NotTo (BeNil ())
113113 Expect (response .JsonPatch ).NotTo (BeEmpty ())
@@ -128,7 +128,7 @@ var _ = Describe("LifecycleImplementation", func() {
128128 ObjectDefinition : jobJSON ,
129129 }
130130
131- response , err := reconcileJob (ctx , cluster , request , pluginConfiguration , nil )
131+ response , err := reconcileJob (ctx , cluster , request , nil )
132132 Expect (err ).NotTo (HaveOccurred ())
133133 Expect (response ).To (BeNil ())
134134 })
@@ -138,7 +138,7 @@ var _ = Describe("LifecycleImplementation", func() {
138138 ObjectDefinition : []byte ("invalid-json" ),
139139 }
140140
141- response , err := reconcileJob (ctx , cluster , request , pluginConfiguration , nil )
141+ response , err := reconcileJob (ctx , cluster , request , nil )
142142 Expect (err ).To (HaveOccurred ())
143143 Expect (response ).To (BeNil ())
144144 })
@@ -165,7 +165,7 @@ var _ = Describe("LifecycleImplementation", func() {
165165 ObjectDefinition : jobJSON ,
166166 }
167167
168- response , err := reconcileJob (ctx , cluster , request , pluginConfiguration , nil )
168+ response , err := reconcileJob (ctx , cluster , request , nil )
169169 Expect (err ).NotTo (HaveOccurred ())
170170 Expect (response ).To (BeNil ())
171171 })
0 commit comments