about summary refs log tree commit diff
path: root/e2e-tests
diff options
context:
space:
mode:
Diffstat (limited to 'e2e-tests')
-rw-r--r--e2e-tests/jobs/int-for-float-input.yaml3
-rw-r--r--e2e-tests/tests.yaml4
-rw-r--r--e2e-tests/tools/int-for-float-input.scm4
3 files changed, 6 insertions, 5 deletions
diff --git a/e2e-tests/jobs/int-for-float-input.yaml b/e2e-tests/jobs/int-for-float-input.yaml
index 32a3dc4..0d12299 100644
--- a/e2e-tests/jobs/int-for-float-input.yaml
+++ b/e2e-tests/jobs/int-for-float-input.yaml
@@ -1 +1,2 @@
-message: 1
+message1: 1
+message2: 1.2
diff --git a/e2e-tests/tests.yaml b/e2e-tests/tests.yaml
index e04d4dd..bc4639c 100644
--- a/e2e-tests/tests.yaml
+++ b/e2e-tests/tests.yaml
@@ -221,5 +221,5 @@
   output:
     output_message:
       class: File
-      size: 2
-      checksum: sha1$e5fa44f2b31c1fb553b6021e7360d07d5d91ff5e
+      size: 6
+      checksum: sha1$d493abaf2d0ffe0bec8d302fdee38a43e80d2a91
diff --git a/e2e-tests/tools/int-for-float-input.scm b/e2e-tests/tools/int-for-float-input.scm
index 18b2f1f..a2f351e 100644
--- a/e2e-tests/tools/int-for-float-input.scm
+++ b/e2e-tests/tools/int-for-float-input.scm
@@ -1,3 +1,3 @@
-(command #:inputs (message #:type float)
-         #:run "echo" message
+(command #:inputs (message1 #:type float) (message2 #:type float)
+         #:run "echo" message1 message2
          #:outputs (output_message #:type stdout))