From 53f941b8df709da7b8346404792001b58fafa027 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 27 Jun 2008 20:15:38 -0500 Subject: [PATCH] Generalize test --- extra/io/unix/pipes/pipes-tests.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/io/unix/pipes/pipes-tests.factor b/extra/io/unix/pipes/pipes-tests.factor index 27a490d801..6ea74043ca 100644 --- a/extra/io/unix/pipes/pipes-tests.factor +++ b/extra/io/unix/pipes/pipes-tests.factor @@ -2,7 +2,7 @@ USING: tools.test io.pipes io.unix.pipes io.encodings.utf8 io.encodings io namespaces sequences ; IN: io.unix.pipes.tests -[ { 0 0 } ] [ { "ls" "grep x" } run-pipeline ] unit-test +[ { 0 0 } ] [ { "ls" "grep ." } run-pipeline ] unit-test [ { 0 f 0 } ] [ { @@ -12,6 +12,6 @@ IN: io.unix.pipes.tests output-stream [ utf8 ] change input-stream get lines reverse [ print ] each f ] - "grep x" + "grep ." } run-pipeline ] unit-test