Skip to content

Commit

Permalink
t/render.lisp: use pstream-p
Browse files Browse the repository at this point in the history
  • Loading branch information
defaultxr committed Nov 22, 2024
1 parent d8ba9b5 commit 22ac619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/render.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"Test the `render' function"
(is (typep (render (pbind :dur 1) :eseq) 'eseq)
"render :eseq does not coerce to an eseq")
(is (typep (render (pseq (list 1 2 3)) :pstream) 'pstream)
(is (pstream-p (render (pseq (list 1 2 3)) :pstream))
"render :pstream does not coerce to a pstream")
(is (listp (render (pseq (list 1 2 3)) :list))
"render :list does not coerce to a list")
Expand Down

0 comments on commit 22ac619

Please sign in to comment.