]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/sequences/snipped/snipped-tests.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / sequences / snipped / snipped-tests.factor
index 49eb46e911c72c588f6fdf96610b4fe348a0bdd9..3d3af20793930452ad3afb38f29f4329c2d4584d 100644 (file)
@@ -3,7 +3,7 @@
 USING: arrays sequences tools.test ;
 IN: sequences.snipped
 
-{ { 0 1 2 5 6 } } [ 3 5 7 iota <snipped> >array ] unit-test
-{ { 0 1 2 } } [ 3 10 7 iota <snipped> >array ] unit-test
-{ { 6 } } [ -1 5 7 iota <snipped> >array ] unit-test
-{ { } } [ -1 10 7 iota <snipped> >array ] unit-test
+{ { 0 1 2 5 6 } } [ 3 5 7 <iota> <snipped> >array ] unit-test
+{ { 0 1 2 } } [ 3 10 7 <iota> <snipped> >array ] unit-test
+{ { 6 } } [ -1 5 7 <iota> <snipped> >array ] unit-test
+{ { } } [ -1 10 7 <iota> <snipped> >array ] unit-test