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 567f7caaa3 fix: Fix test createAdapterWithoutStarting (#3827)
567f7caaa3 is described below

commit 567f7caaa309e1a6cd596391f3114e8f1326dea9
Author: Philipp Zehnder <[email protected]>
AuthorDate: Mon Oct 13 16:30:02 2025 +0200

    fix: Fix test createAdapterWithoutStarting (#3827)
---
 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