This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new b03e66e6af fix for failing renaming test (#4040)
b03e66e6af is described below

commit b03e66e6af242c12daa9c490930430a96209e571
Author: Jacqueline Höllig <[email protected]>
AuthorDate: Tue Dec 9 14:42:04 2025 +0100

    fix for failing renaming test (#4040)
---
 ui/cypress/support/utils/pipeline/PipelineUtils.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/cypress/support/utils/pipeline/PipelineUtils.ts 
b/ui/cypress/support/utils/pipeline/PipelineUtils.ts
index 7d90bde728..2d66f99bd8 100644
--- a/ui/cypress/support/utils/pipeline/PipelineUtils.ts
+++ b/ui/cypress/support/utils/pipeline/PipelineUtils.ts
@@ -198,8 +198,8 @@ export class PipelineUtils {
     }
 
     public static clonePipeline(newPipelineName: string) {
-        PipelineBtns.pipelineCloneModeBtn().children().click();
         cy.dataCy('sp-editor-pipeline-name').type(newPipelineName);
+        PipelineBtns.pipelineCloneModeBtn().children().click();
     }
 
     public static updatePipeline(newPipelineName: string) {

Reply via email to