From 14421f679050b49f96baee66c19fc7ff0d3184ed Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 16 Jun 2024 15:47:46 +0900 Subject: Fix tests --- tests/run.scm | 4 ++-- 1 file 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)))) -- cgit v1.2.3