]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/streams/limited/limited-tests.factor
core: Change lines -> read-lines, contents -> read-contents, string-lines -> lines
[factor.git] / basis / io / streams / limited / limited-tests.factor
index 643776107914e9712d8d8bbb10947c8d03b1b806..ccd4da8a538d64fa29934cee51bbfef4d5c9817d 100644 (file)
@@ -104,22 +104,22 @@ namespaces strings tools.test ;
 
 { "asdf" } [
     "asdf" <string-reader> 2 <limited-stream> [
-        unlimited-input contents
+        unlimited-input read-contents
     ] with-input-stream
 ] unit-test
 
 { "asdf" } [
     "asdf" <string-reader> 2 <limited-stream> [
-        [ contents ] with-unlimited-input
+        [ read-contents ] with-unlimited-input
     ] with-input-stream
 ] unit-test
 
 { "gh" } [
     "asdfgh" <string-reader> 4 <limited-stream> [
         2 [
-            [ contents drop ] with-unlimited-input
+            [ read-contents drop ] with-unlimited-input
         ] with-limited-input
-        [ contents ] with-unlimited-input
+        [ read-contents ] with-unlimited-input
     ] with-input-stream
 ] unit-test