summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-06-30 19:53:48 +0200
committerAnatol Belski <ab@php.net>2015-07-02 14:23:03 +0200
commit8fed210610c977232aa27c0280135249ebbabfae (patch)
treea5bf4222ed653ec7bc0bf45a3a1cae2045ac7ece
parentafd8ebca787102097abc5d1cee10c441c8623ff4 (diff)
downloadphp-git-8fed210610c977232aa27c0280135249ebbabfae.tar.gz
remove stderr descriptor
-rw-r--r--ext/standard/tests/streams/proc_open_bug69900.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/streams/proc_open_bug69900.phpt b/ext/standard/tests/streams/proc_open_bug69900.phpt
index 59fcdfdd11..fd04052c68 100644
--- a/ext/standard/tests/streams/proc_open_bug69900.phpt
+++ b/ext/standard/tests/streams/proc_open_bug69900.phpt
@@ -19,7 +19,7 @@ $s = fgets($in);
?>';
file_put_contents($fl, $test_content);
-$descriptorspec = array(0 => array("pipe", "r"),1 => array("pipe", "w"), 2 => array("file", "error-output.txt", "a"));
+$descriptorspec = array(0 => array("pipe", "r"),1 => array("pipe", "w"));
$pipes = array();
$process = proc_open(PHP_BINARY.' -f ' . $fl, $descriptorspec, $pipes, NULL, NULL, array("blocking_pipes" => true));