diff options
author | Arun Isaac | 2021-10-12 16:45:39 +0530 |
---|---|---|
committer | Arun Isaac | 2021-10-12 16:45:39 +0530 |
commit | 5453bae3d18e92712b0d2ee36c59a5ff191af9e3 (patch) | |
tree | 23535f6f235686a0e8d6923079f96f05676ecd22 | |
parent | cdf7a7e16bee0b15c946aa2b37351e0f01e3cecc (diff) | |
download | ccwl-5453bae3d18e92712b0d2ee36c59a5ff191af9e3.tar.gz ccwl-5453bae3d18e92712b0d2ee36c59a5ff191af9e3.tar.lz ccwl-5453bae3d18e92712b0d2ee36c59a5ff191af9e3.zip |
tests: Fix quoting of type.
* tests/ccwl.scm ("stdin input should not have inputBinding"): Fix
quoting of type File.
-rw-r--r-- | tests/ccwl.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ccwl.scm b/tests/ccwl.scm index 8cbe009..8f09fea 100644 --- a/tests/ccwl.scm +++ b/tests/ccwl.scm @@ -27,7 +27,7 @@ (assoc-ref ((module-ref (resolve-module '(ccwl cwl)) 'command->cwl-scm) - (command #:inputs (file #:type 'File) + (command #:inputs (file #:type File) #:run "wc" "-c" #:stdin file)) 'inputs) |