diff options
Diffstat (limited to 'ext/IO')
-rwxr-xr-x | ext/IO/t/io_pipe.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/IO/t/io_pipe.t b/ext/IO/t/io_pipe.t index 9b7d6f401a..857d3d0e33 100755 --- a/ext/IO/t/io_pipe.t +++ b/ext/IO/t/io_pipe.t @@ -49,7 +49,7 @@ print "1..10\n"; if ($is_win32) { print "ok $_ # skipped: $is_win32\n" for 1..4; } else { - $pipe = new IO::Pipe->reader($perl, '-e', 'print qq(not ok 1)\n"'); + $pipe = new IO::Pipe->reader($perl, '-e', 'print qq(not ok 1\n)'); while (<$pipe>) { s/^not //; print; |