diff options
| author | Arun Isaac | 2025-11-29 12:35:39 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-11-29 12:35:39 +0000 |
| commit | 4435efa37c1e7afbd2c75fc2067f7e9bf58094e8 (patch) | |
| tree | e0828eb31d4659bbddc25413ea1c391a9b5538c1 /e2e-tests/tools | |
| parent | 069f6367b5c638c44e8f2c55ef1df604df2adac1 (diff) | |
| download | ravanan-4435efa37c1e7afbd2c75fc2067f7e9bf58094e8.tar.gz ravanan-4435efa37c1e7afbd2c75fc2067f7e9bf58094e8.tar.lz ravanan-4435efa37c1e7afbd2c75fc2067f7e9bf58094e8.zip | |
work/command-line-tool: Avoid infinite recursion in matching floats.
Diffstat (limited to 'e2e-tests/tools')
| -rw-r--r-- | e2e-tests/tools/int-for-float-input.scm | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |
