summaryrefslogtreecommitdiff
path: root/ext/standard/tests/streams/bug64770.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/streams/bug64770.phpt')
-rw-r--r--ext/standard/tests/streams/bug64770.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/streams/bug64770.phpt b/ext/standard/tests/streams/bug64770.phpt
index 785c4237a1..86addfd809 100644
--- a/ext/standard/tests/streams/bug64770.phpt
+++ b/ext/standard/tests/streams/bug64770.phpt
@@ -1,5 +1,5 @@
--TEST--
-Bug #64770 stream_select() fails with pipes from proc_open()
+Bug #64770 stream_select() fails with pipes from proc_open()
--FILE--
<?php
@@ -17,7 +17,7 @@ $p = proc_open($cmd, $descs, $pipes, '.', NULL, $other_opts);
if (is_resource($p)) {
$data = '';
- while (1) {
+ while (1) {
$w = $e = NULL;
$n = stream_select($pipes, $w, $e, 300);