about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorArun Isaac2025-09-30 23:55:08 +0100
committerArun Isaac2025-11-16 22:43:00 +0000
commit0ff48dd263e3228b74b92122dc03fa539b3c6d98 (patch)
treeb2e4f5b02be0479671da4b737c8a7f1282e4303d /tests
parent94e9d9f9a353a74b802ddb395dbe347350dcbb54 (diff)
downloadravanan-0ff48dd263e3228b74b92122dc03fa539b3c6d98.tar.gz
ravanan-0ff48dd263e3228b74b92122dc03fa539b3c6d98.tar.lz
ravanan-0ff48dd263e3228b74b92122dc03fa539b3c6d98.zip
work/types: Rename <array-type> to <cwl-array-type>.
array-type conflicts with a core Guile function.
Diffstat (limited to 'tests')
-rw-r--r--tests/work/command-line-tool.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/work/command-line-tool.scm b/tests/work/command-line-tool.scm
index 3d11b53..3d63fbb 100644
--- a/tests/work/command-line-tool.scm
+++ b/tests/work/command-line-tool.scm
@@ -1,5 +1,5 @@
 ;;; ravanan --- High-reproducibility CWL runner powered by Guix
-;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2024, 2025 Arun Isaac <arunisaac@systemreboot.net>
 ;;;
 ;;; This file is part of ravanan.
 ;;;
@@ -24,6 +24,6 @@
 
 (test-equal "match null object to array type"
   #f
-  (match-type 'null (array-type 'File)))
+  (match-type 'null (cwl-array-type 'File)))
 
 (test-end "work.command-line-tool")