summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/proc_open01.phpt
diff options
context:
space:
mode:
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 3348403e2b..04882853ec 100644
--- a/ext/standard/tests/file/proc_open01.phpt
+++ b/ext/standard/tests/file/proc_open01.phpt
@@ -18,7 +18,7 @@ if ($proc === false) {
}
var_dump($pipes);
stream_set_blocking($pipes[1], FALSE);
-$test_string = b"yay!\n";
+$test_string = "yay!\n";
fwrite($pipes[0], $test_string);
fflush($pipes[0]);
fclose($pipes[0]);