]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/concurrency/combinators/combinators-tests.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / concurrency / combinators / combinators-tests.factor
index 54e343f88acd904827cd0e89861ac64c4cea3619..6e3a8eb8abc29be74a8d31bdb2cca26b973ed6e3 100644 (file)
@@ -17,12 +17,12 @@ IN: concurrency.combinators.tests
 [ error>> "Even" = ] must-fail-with
 
 { V{ 0 3 6 9 } }
-[ 10 iota [ 3 mod zero? ] parallel-filter ] unit-test
+[ 10 <iota> [ 3 mod zero? ] parallel-filter ] unit-test
 
 { 10 }
 [
     V{ } clone
-    10 iota over [ push ] curry parallel-each
+    10 <iota> over [ push ] curry parallel-each
     length
 ] unit-test
 
@@ -41,7 +41,7 @@ IN: concurrency.combinators.tests
 { 20 }
 [
     V{ } clone
-    10 iota 10 iota pick [ [ push ] [ push ] bi ] curry 2parallel-each
+    10 <iota> 10 iota pick [ [ push ] [ push ] bi ] curry 2parallel-each
     length
 ] unit-test