diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2024-06-12 00:54:11 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2024-06-12 00:54:11 +0900 |
commit | 7e9013fc2ae5d82dfc0b152089c94d6c78e245b3 (patch) | |
tree | 82cd571bb06246e448bd0b6e344e0745e0c5b546 /tests | |
parent | 6d18ea4ce80f312e0c54d3674c49cf623a23d4b3 (diff) |
Rename operator procedure from `op` to `<>`
Diffstat (limited to 'tests')
-rw-r--r-- | tests/run.scm | 6 |
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") |