diff options
| author | Nikita Popov <nikic@php.net> | 2013-03-28 18:23:23 +0100 |
|---|---|---|
| committer | Nikita Popov <nikic@php.net> | 2013-03-28 18:23:23 +0100 |
| commit | b1a6a1703910d77ef7932cd4b03a36a4dbabc917 (patch) | |
| tree | c71dcec2eac06a7a3d04ba4fb7a65e618a6bbfd4 /sapi/cli/tests | |
| parent | 127c78cb76b9f5431bd0b37cb8c253aa6dbe358a (diff) | |
| download | php-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.phpt | 2 |
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-- |
