]> granicus.if.org Git - php/commitdiff
Fix Bug #64545: PHP Error in ef93a93ee21bce9218188
authorNikita Popov <nikic@php.net>
Thu, 28 Mar 2013 17:23:23 +0000 (18:23 +0100)
committerNikita Popov <nikic@php.net>
Thu, 28 Mar 2013 17:23:23 +0000 (18:23 +0100)
Test was using die "Foo" instead of die("Foo").

sapi/cli/tests/bug64529.phpt

index 7ca13a470bb54676bd7972f5f362df22f108b408..d3755724e8a514ead7ba0d27307f557afb54fd14 100644 (file)
@@ -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--