]> gitweb.factorcode.org Git - factor.git/commitdiff
sequences.extras: whoops, fix tests.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 26 Jan 2017 20:07:33 +0000 (12:07 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 26 Jan 2017 20:07:33 +0000 (12:07 -0800)
extra/sequences/extras/extras-tests.factor

index 8539c2ffce6da9589052ac0638c13895f0dc1d08..52a016c344df6e89b02ab8d6efb71bd33a71dc27 100644 (file)
@@ -245,8 +245,8 @@ IN: sequences.extras.tests
 { }
 [ "test:" all-words [ name>> over prepend ] map-zip 2drop ] unit-test
 
-{ { 0 1 2 3 } } [ 8 iota [ 4 < ] take-while ] unit-test
-{ { } } [ { 15 16 } [ 4 < ] take-while ] unit-test
+{ { 0 1 2 3 } } [ 8 iota [ 4 < ] take-while >array ] unit-test
+{ { } } [ { 15 16 } [ 4 < ] take-while >array ] unit-test
 
-{ { 4 5 6 7 } } [ 8 iota [ 4 < ] drop-while ] unit-test
-{ { 15 16 } } [ { 15 16 } [ 4 < ] drop-while ] unit-test
+{ { 4 5 6 7 } } [ 8 iota [ 4 < ] drop-while >array ] unit-test
+{ { 15 16 } } [ { 15 16 } [ 4 < ] drop-while >array ] unit-test