From: Nikita Popov Date: Thu, 28 Mar 2013 17:23:23 +0000 (+0100) Subject: Fix Bug #64545: PHP Error in ef93a93ee21bce9218188 X-Git-Tag: php-5.6.0alpha1~448^2~64^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1a6a1703910d77ef7932cd4b03a36a4dbabc917;p=php Fix Bug #64545: PHP Error in ef93a93ee21bce9218188 Test was using die "Foo" instead of die("Foo"). --- diff --git a/sapi/cli/tests/bug64529.phpt b/sapi/cli/tests/bug64529.phpt index 7ca13a470b..d3755724e8 100644 --- a/sapi/cli/tests/bug64529.phpt +++ b/sapi/cli/tests/bug64529.phpt @@ -7,7 +7,7 @@ if (substr(PHP_OS, 0, 3) == "WIN") { } exec('which expect', $output, $ret); if ($ret) { - die "skip no expect installed"; + die("skip no expect installed"); } ?> --FILE--