@@ -23,7 +23,6 @@ import (
2323 params "github.com/kubeflow/pipelines/backend/api/v1beta1/go_http_client/pipeline_client/pipeline_service"
2424 "github.com/kubeflow/pipelines/backend/api/v1beta1/go_http_client/pipeline_model"
2525 uploadParams "github.com/kubeflow/pipelines/backend/api/v1beta1/go_http_client/pipeline_upload_client/pipeline_upload_service"
26- "github.com/kubeflow/pipelines/backend/src/apiserver/template"
2726 pipelinetemplate "github.com/kubeflow/pipelines/backend/src/apiserver/template"
2827 api_server "github.com/kubeflow/pipelines/backend/src/common/client/api_server/v1"
2928 "github.com/kubeflow/pipelines/backend/src/common/util"
@@ -337,7 +336,7 @@ func (s *PipelineVersionApiTest) TestArgoSpec() {
337336 require .Nil (t , err )
338337 bytes , err := os .ReadFile ("../resources/arguments-parameters.yaml" )
339338 require .Nil (t , err )
340- expected , err := pipelinetemplate .New (bytes , template .TemplateOptions {CacheDisabled : true })
339+ expected , err := pipelinetemplate .New (bytes , pipelinetemplate .TemplateOptions {CacheDisabled : true })
341340 require .Nil (t , err )
342341 assert .Equal (t , expected , tmpl )
343342}
@@ -370,7 +369,7 @@ func (s *PipelineVersionApiTest) TestV2Spec() {
370369 require .Nil (t , err )
371370 bytes , err := os .ReadFile ("../resources/v2-hello-world.yaml" )
372371 require .Nil (t , err )
373- expected , err := pipelinetemplate .New (bytes , template .TemplateOptions {CacheDisabled : true })
372+ expected , err := pipelinetemplate .New (bytes , pipelinetemplate .TemplateOptions {CacheDisabled : true })
374373 require .Nil (t , err )
375374 assert .Equal (t , expected , tmpl , "Discrepancy found in template's pipeline name. Created pipeline's name - %s." , pipeline .Name )
376375}
0 commit comments