summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2021-10-12 16:45:39 +0530
committerArun Isaac2021-10-12 16:45:39 +0530
commit5453bae3d18e92712b0d2ee36c59a5ff191af9e3 (patch)
tree23535f6f235686a0e8d6923079f96f05676ecd22
parentcdf7a7e16bee0b15c946aa2b37351e0f01e3cecc (diff)
downloadccwl-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.scm2
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)