@@ -154,7 +154,7 @@ var _ = Describe("Operator", func() {
154154 DeferCleanup (cleanupNamespaces , functionNamespace )
155155
156156 // Deploy function using func CLI
157- out , err := utils .RunFuncDeploy (repoDir , functionNamespace )
157+ out , err := utils .RunFuncDeploy (repoDir , utils . WithNamespace ( functionNamespace ) )
158158 Expect (err ).NotTo (HaveOccurred ())
159159 _ , _ = fmt .Fprint (GinkgoWriter , out )
160160
@@ -235,7 +235,7 @@ var _ = Describe("Operator", func() {
235235 functionDir := filepath .Join (repoDir , subPath )
236236
237237 // Deploy function using func CLI
238- out , err := utils .RunFuncDeploy (functionDir , functionNamespace )
238+ out , err := utils .RunFuncDeploy (functionDir , utils . WithNamespace ( functionNamespace ) )
239239 Expect (err ).NotTo (HaveOccurred ())
240240 _ , _ = fmt .Fprint (GinkgoWriter , out )
241241
@@ -375,7 +375,7 @@ var _ = Describe("Operator", func() {
375375 DeferCleanup (cleanupNamespaces , functionNamespace )
376376
377377 // Deploy function using func CLI
378- out , err := utils .RunFuncDeploy (repoDir , functionNamespace )
378+ out , err := utils .RunFuncDeploy (repoDir , utils . WithNamespace ( functionNamespace ) )
379379 Expect (err ).NotTo (HaveOccurred ())
380380 _ , _ = fmt .Fprint (GinkgoWriter , out )
381381
0 commit comments