summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/proc_open01.phpt
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-05-27 07:40:09 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-05-28 22:14:37 +0200
commitaf01ef874170900019b5173d443d5ccb9d589f0a (patch)
treeb418332fa6fde08c71c6025936c762ecb7e046b1 /ext/standard/tests/file/proc_open01.phpt
parentc70468b8d3c1d6711da0db84cba30d87d2482e5c (diff)
downloadphp-git-af01ef874170900019b5173d443d5ccb9d589f0a.tar.gz
Remove unused binary_pipes option
Option binary_pipes was added in PHP 6 which was then refactored and this option was removed.
Diffstat (limited to 'ext/standard/tests/file/proc_open01.phpt')
-rw-r--r--ext/standard/tests/file/proc_open01.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/file/proc_open01.phpt b/ext/standard/tests/file/proc_open01.phpt
index 4e619a3286..28e68a2477 100644
--- a/ext/standard/tests/file/proc_open01.phpt
+++ b/ext/standard/tests/file/proc_open01.phpt
@@ -11,7 +11,7 @@ if ($php === false) {
$proc = proc_open(
"$php -n",
array(0 => array('pipe', 'r'), 1 => array('pipe', 'w')),
- $pipes, getcwd(), array(), array('binary_pipes' => true)
+ $pipes, getcwd(), array(), array()
);
if ($proc === false) {
print "something went wrong.\n";