From b1a6a1703910d77ef7932cd4b03a36a4dbabc917 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 28 Mar 2013 18:23:23 +0100 Subject: [PATCH] Fix Bug #64545: PHP Error in ef93a93ee21bce9218188 Test was using die "Foo" instead of die("Foo"). --- sapi/cli/tests/bug64529.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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-- -- 2.50.1