You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2022/08/13 09:23:25 UTC

[incubator-streampipes] branch dev updated: [test] Fix failing tests

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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 06a02f0bc [test] Fix failing tests
06a02f0bc is described below

commit 06a02f0bcc42639062aee3496534d401b212e782
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Sat Aug 13 11:23:18 2022 +0200

    [test] Fix failing tests
---
 ui/cypress/fixtures/pipelineElement/enrich-jvm/math1/expected.csv       | 2 +-
 ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/expected.csv | 2 +-
 ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/input.csv    | 2 +-
 ui/cypress/tests/pipelineElement/SinglePipelineElement.ts               | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ui/cypress/fixtures/pipelineElement/enrich-jvm/math1/expected.csv b/ui/cypress/fixtures/pipelineElement/enrich-jvm/math1/expected.csv
index e1040968d..5b481a537 100644
--- a/ui/cypress/fixtures/pipelineElement/enrich-jvm/math1/expected.csv
+++ b/ui/cypress/fixtures/pipelineElement/enrich-jvm/math1/expected.csv
@@ -1,3 +1,3 @@
 time;calculationResult;temperature1;temperature2
-1623871499055;5.0;2.0;3.0;
+1623871499055;5.0;2.0;3.0
 1623871500059;7.0;3.0;4.0
diff --git a/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/expected.csv b/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/expected.csv
index ad9430c2b..6727b729a 100644
--- a/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/expected.csv
+++ b/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/expected.csv
@@ -1,3 +1,3 @@
 time;temperature1
-1623871499055;12.0
+1623871499055;20.0
 1623871500059;17.5
diff --git a/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/input.csv b/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/input.csv
index 57ae1b77e..437bd65ba 100644
--- a/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/input.csv
+++ b/ui/cypress/fixtures/pipelineElement/enrich-jvm/staticmath1/input.csv
@@ -1,3 +1,3 @@
-timestamp;temperature1;
+timestamp;temperature1
 1623871499055;4
 1623871500059;3.5
diff --git a/ui/cypress/tests/pipelineElement/SinglePipelineElement.ts b/ui/cypress/tests/pipelineElement/SinglePipelineElement.ts
index e3053a68f..4fbb13514 100644
--- a/ui/cypress/tests/pipelineElement/SinglePipelineElement.ts
+++ b/ui/cypress/tests/pipelineElement/SinglePipelineElement.ts
@@ -22,7 +22,7 @@ import { ProcessorTest } from '../../support/model/ProcessorTest';
 const allTests = Cypress.env('processingElements');
 
 allTests.forEach(test => {
-  const testNames = ['fieldHasher1'];
+  const testNames = ['staticmath1'];
 
   const processorTest = test as ProcessorTest;