]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/prettyprint/prettyprint-tests.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / prettyprint / prettyprint-tests.factor
index 8ba11bdf76ddb9afd085aae5c8a1f5d0c8e1d800..b98acc9374d611fc2873316b9ef0a8cb6eaae6ba 100644 (file)
@@ -457,12 +457,12 @@ TUPLE: fo { a intersection{ integer fixnum } initial: 0 } ;
 ] unit-test
 
 { "{ 0 1 2 3 4 }" } [
-    [ 5 length-limit [ 5 iota >array pprint ] with-variable ]
+    [ 5 length-limit [ 5 <iota> >array pprint ] with-variable ]
     with-string-writer
 ] unit-test
 
 { "{ 0 1 2 3 ~2 more~ }" } [
-    [ 5 length-limit [ 6 iota >array pprint ] with-variable ]
+    [ 5 length-limit [ 6 <iota> >array pprint ] with-variable ]
     with-string-writer
 ] unit-test