summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorArnaud Le Blanc <lbarnaud@php.net>2008-12-18 16:04:59 +0000
committerArnaud Le Blanc <lbarnaud@php.net>2008-12-18 16:04:59 +0000
commit0cd7fdd99ff0e992fc8403aac4c83a2e2a5506c1 (patch)
tree122ac0fc21e48f69d537c5b2081e5be9d445188e /ext
parentbd7f18ab4fbb51755b2f742f3138829dbf5cb86b (diff)
downloadphp-git-0cd7fdd99ff0e992fc8403aac4c83a2e2a5506c1.tar.gz
MFH: Fixed test
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/tests/streams/bug46024.phpt2
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]);