diff options
author | Arnaud Le Blanc <lbarnaud@php.net> | 2008-12-18 16:04:59 +0000 |
---|---|---|
committer | Arnaud Le Blanc <lbarnaud@php.net> | 2008-12-18 16:04:59 +0000 |
commit | 0cd7fdd99ff0e992fc8403aac4c83a2e2a5506c1 (patch) | |
tree | 122ac0fc21e48f69d537c5b2081e5be9d445188e | |
parent | bd7f18ab4fbb51755b2f742f3138829dbf5cb86b (diff) | |
download | php-git-0cd7fdd99ff0e992fc8403aac4c83a2e2a5506c1.tar.gz |
MFH: Fixed test
-rw-r--r-- | ext/standard/tests/streams/bug46024.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/streams/bug46024.phpt b/ext/standard/tests/streams/bug46024.phpt index 5dd19084c4..34407cdc8d 100644 --- a/ext/standard/tests/streams/bug46024.phpt +++ b/ext/standard/tests/streams/bug46024.phpt @@ -20,7 +20,7 @@ $w = array($pipes[0]); $e = null; $ret = stream_select($r, $w, $e, 1); var_dump($ret === (count($r) + count($w))); -fread($pipes[0], 1); +fread($pipes[1], 1); $r = array($pipes[1]); $w = array($pipes[0]); |