summaryrefslogtreecommitdiff
path: root/sapi/cli/tests
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2013-03-28 18:23:23 +0100
committerNikita Popov <nikic@php.net>2013-03-28 18:23:23 +0100
commitb1a6a1703910d77ef7932cd4b03a36a4dbabc917 (patch)
treec71dcec2eac06a7a3d04ba4fb7a65e618a6bbfd4 /sapi/cli/tests
parent127c78cb76b9f5431bd0b37cb8c253aa6dbe358a (diff)
downloadphp-git-b1a6a1703910d77ef7932cd4b03a36a4dbabc917.tar.gz
Fix Bug #64545: PHP Error in ef93a93ee21bce9218188
Test was using die "Foo" instead of die("Foo").
Diffstat (limited to 'sapi/cli/tests')
-rw-r--r--sapi/cli/tests/bug64529.phpt2
1 files changed, 1 insertions, 1 deletions
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--