Fix for new set output order.

This test really ought to be changed somehow.
pull/11/head
Sam Tobin-Hochstadt 9 years ago
parent 0be362e112
commit 07e98cd6a9

@ -63,7 +63,7 @@
(check-equal? (->list '(1 2 3)) '(1 2 3))
(check-equal? (->list (list->vector '(1 2 3))) '(1 2 3))
(check-equal? (->list (set 1 2 3)) '(3 2 1))
(check-equal? (->list (set 1 2 3)) '(2 3 1))
(check-equal? (->list "foo") (list "foo"))
(check-true (->boolean #t))

Loading…
Cancel
Save