aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-06-16 15:47:46 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-06-16 15:47:46 +0900
commit14421f679050b49f96baee66c19fc7ff0d3184ed (patch)
treef47259b2b90c58f1e1a8f41d0ea46625069608f4
parent6f106cd349338dd51758c02a4cd11fbf58557ba8 (diff)
Fix tests
-rw-r--r--tests/run.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run.scm b/tests/run.scm
index e9b7db2..210584d 100644
--- a/tests/run.scm
+++ b/tests/run.scm
@@ -394,7 +394,7 @@
(import (prefix (algebraic-structures list zip applicative) list-zip:))
-(test '(a) (list:pure 'a))
+(test '(a) (list-zip:pure 'a))
(test '((a 1) (b 2))
(list-zip:map2 list '(a b c) '(1 2)))
@@ -416,7 +416,7 @@
(import (prefix (algebraic-structures stream zip applicative) stream-zip:))
-(test '(a) (stream->list (stream:pure 'a)))
+(test '(a) (stream->list (stream-zip:pure 'a)))
(test '((a 1) (b 2))
(stream->list (stream-zip:map2 list (stream 'a 'b 'c) (stream 1 2))))