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

zehnder pushed a commit to branch fix-e2e-create-adapter-without-starting
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit b41ab7f0f9fceda70048a2231664184a7cec0006
Author: Philipp Zehnder <[email protected]>
AuthorDate: Mon Oct 13 11:10:27 2025 +0200

    fix: Fix test createAdapterWithoutStarting
---
 ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts 
b/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts
index ffd9adb48b..878b34dbc0 100644
--- a/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts
+++ b/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts
@@ -33,6 +33,7 @@ describe('Creates a new adapter without starting it', () => {
 
         ConnectUtils.testAdapter(adapterInput);
 
-        ConnectUtils.startAndValidateAdapter(7);
+        // Start adapter manually to validate that it starts
+        ConnectUtils.startAndValidateAdapter(adapterInput.adapterName, 7);
     });
 });

Reply via email to