diff options
-rw-r--r-- | tests/run.scm | 4 |
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)))) |