From 7e9013fc2ae5d82dfc0b152089c94d6c78e245b3 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Wed, 12 Jun 2024 00:54:11 +0900 Subject: Rename operator procedure from `op` to `<>` --- tests/run.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/run.scm') 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") -- cgit v1.2.3