diff options
Diffstat (limited to 't/io/pipe.t')
-rwxr-xr-x | t/io/pipe.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/io/pipe.t b/t/io/pipe.t index 0133c39e49..95df4dccb6 100755 --- a/t/io/pipe.t +++ b/t/io/pipe.t @@ -5,9 +5,9 @@ $| = 1; print "1..8\n"; -open(PIPE, "|-") || (exec 'tr', '[A-Z]', '[a-z]'); -print PIPE "OK 1\n"; -print PIPE "ok 2\n"; +open(PIPE, "|-") || (exec 'tr', 'YX', 'ko'); +print PIPE "Xk 1\n"; +print PIPE "oY 2\n"; close PIPE; if (open(PIPE, "-|")) { |