diff options
author | Arun Isaac | 2021-07-19 15:48:49 +0530 |
---|---|---|
committer | Arun Isaac | 2021-07-19 15:48:49 +0530 |
commit | f378db9c34bd08bec90b2225186f7f1c57144d68 (patch) | |
tree | 3bb62eed2aa98da1971943a0c15218e1f7ef8926 /tests | |
parent | 118d4ff00e493b5cba7135a9d1aa20393eaba7fb (diff) | |
download | ccwl-f378db9c34bd08bec90b2225186f7f1c57144d68.tar.gz ccwl-f378db9c34bd08bec90b2225186f7f1c57144d68.tar.lz ccwl-f378db9c34bd08bec90b2225186f7f1c57144d68.zip |
tests: Fix indentation.
* tests/ccwl.scm ("stdin input should not have inputBinding"): Fix
indentation.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ccwl.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/ccwl.scm b/tests/ccwl.scm index 1bef07d..dfdc7c0 100644 --- a/tests/ccwl.scm +++ b/tests/ccwl.scm @@ -23,15 +23,15 @@ (test-assert "stdin input should not have inputBinding" (not (assoc-ref - (assoc-ref - (assoc-ref - ((module-ref (resolve-module '(ccwl ccwl)) - 'command->cwl) - (command #:inputs (file #:type 'File) - #:run "wc" "-c" - #:stdin file)) - 'inputs) - 'file) - 'inputBinding))) + (assoc-ref + (assoc-ref + ((module-ref (resolve-module '(ccwl ccwl)) + 'command->cwl) + (command #:inputs (file #:type 'File) + #:run "wc" "-c" + #:stdin file)) + 'inputs) + 'file) + 'inputBinding))) (test-end "ccwl") |