aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2024-03-12 15:46:53 +0000
committerArun Isaac2024-03-12 15:46:53 +0000
commit224070cbfd0571dd6d999f0f20593d29affb998a (patch)
tree621e286c9bca19d63b0cabca9880b805906534bd
parentfd7895da687b13a1121ef2f4a532005ccaff5981 (diff)
downloadccwl-224070cbfd0571dd6d999f0f20593d29affb998a.tar.gz
ccwl-224070cbfd0571dd6d999f0f20593d29affb998a.tar.lz
ccwl-224070cbfd0571dd6d999f0f20593d29affb998a.zip
tests: Fix command definition in test.
* tests/ccwl.scm ("outputs with #:other parameters that fail to evaluate must raise a &ccwl-violation condition"): Define command inputs, not outputs.
-rw-r--r--tests/ccwl.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ccwl.scm b/tests/ccwl.scm
index f0e2911..be986da 100644
--- a/tests/ccwl.scm
+++ b/tests/ccwl.scm
@@ -1,5 +1,5 @@
;;; ccwl --- Concise Common Workflow Language
-;;; Copyright © 2021, 2022, 2023 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2021–2024 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This file is part of ccwl.
;;;
@@ -279,7 +279,7 @@
(ccwl-violation-with-message?
"#:other parameter not serializable to YAML")
(macroexpand
- '(command #:outputs (file #:type File
+ '(command #:inputs (file #:type File
#:other '((secondaryFiles . ".fai")))
#:run "cat" file)))