aboutsummaryrefslogtreecommitdiff
path: root/tests/run.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-06-12 00:54:11 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-06-12 00:54:11 +0900
commit7e9013fc2ae5d82dfc0b152089c94d6c78e245b3 (patch)
tree82cd571bb06246e448bd0b6e344e0745e0c5b546 /tests/run.scm
parent6d18ea4ce80f312e0c54d3674c49cf623a23d4b3 (diff)
Rename operator procedure from `op` to `<>`
Diffstat (limited to 'tests/run.scm')
-rw-r--r--tests/run.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/run.scm b/tests/run.scm
index 6c306b5..ed2cd8f 100644
--- a/tests/run.scm
+++ b/tests/run.scm
@@ -74,9 +74,9 @@
(test-begin "monoid.list")
-(test '(a b c 1 2 3) (list:op '(a b c) '(1 2 3)))
-(test '(a b c x y z 1 2 3) (list:op (list:op '(a b c) '(x y z)) '(1 2 3)))
-(test '(a b c x y z 1 2 3) (list:op '(a b c) (list:op '(x y z) '(1 2 3))))
+(test '(a b c 1 2 3) (list:<> '(a b c) '(1 2 3)))
+(test '(a b c x y z 1 2 3) (list:<> (list:<> '(a b c) '(x y z)) '(1 2 3)))
+(test '(a b c x y z 1 2 3) (list:<> '(a b c) (list:<> '(x y z) '(1 2 3))))
(test-end "monoid.list")