summaryrefslogtreecommitdiff
path: root/ext/pcntl
diff options
context:
space:
mode:
authorPedro Magalhães <mail@pmmaga.net>2016-11-20 18:37:06 +0100
committerNikita Popov <nikic@php.net>2016-11-20 21:11:53 +0100
commit617dcf1b37ed43bba35e5f720383addb8ae7c562 (patch)
treecc91184a5c662ad5a3715e214edaed37fbcb90c2 /ext/pcntl
parent9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4 (diff)
downloadphp-git-617dcf1b37ed43bba35e5f720383addb8ae7c562.tar.gz
Remove the binary cast from unrelated tests
Diffstat (limited to 'ext/pcntl')
-rw-r--r--ext/pcntl/tests/pcntl_exec_2.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcntl/tests/pcntl_exec_2.phpt b/ext/pcntl/tests/pcntl_exec_2.phpt
index 95214bc55b..5383593d97 100644
--- a/ext/pcntl/tests/pcntl_exec_2.phpt
+++ b/ext/pcntl/tests/pcntl_exec_2.phpt
@@ -10,7 +10,7 @@ if (!getenv("TEST_PHP_EXECUTABLE") || !is_executable(getenv("TEST_PHP_EXECUTABLE
--FILE--
<?php
if (getenv("PCNTL_EXEC_TEST_IS_CHILD")) {
- var_dump((binary)getenv("FOO"));
+ var_dump(getenv("FOO"));
exit;
}
echo "ok\n";