]> gitweb.factorcode.org Git - factor.git/blobdiff - core/classes/tuple/tuple-tests.factor
factor: words -> split-words, lines -> split-lines, fix errors
[factor.git] / core / classes / tuple / tuple-tests.factor
index 5d7d07bb3e2b2427676642a240a3f79c135b7b09..d1e31d720ce3b8df5a70928e160315f1e5d5fdcd 100644 (file)
@@ -206,7 +206,7 @@ TUPLE: computer cpu ram ;
 C: <computer> computer
 
 { "TUPLE: computer cpu ram ;" } [
-    [ \ computer see ] with-string-writer lines second
+    [ \ computer see ] with-string-writer split-lines second
 ] unit-test
 
 TUPLE: laptop < computer battery ;
@@ -231,7 +231,7 @@ C: <laptop> laptop
 test-laptop-slot-values
 
 { "TUPLE: laptop < computer battery ;" } [
-    [ \ laptop see ] with-string-writer lines second
+    [ \ laptop see ] with-string-writer split-lines second
 ] unit-test
 
 { { tuple computer laptop } } [ laptop superclasses-of ] unit-test
@@ -268,7 +268,7 @@ test-server-slot-values
 { f } [ \ + server? ] unit-test
 
 { "TUPLE: server < computer rackmount ;" } [
-    [ \ server see ] with-string-writer lines second
+    [ \ server see ] with-string-writer split-lines second
 ] unit-test
 
 [