Skip to content

Commit b1a6a17

Browse files
committed
Fix Bug #64545: PHP Error in ef93a93
Test was using die "Foo" instead of die("Foo").
1 parent 127c78c commit b1a6a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/cli/tests/bug64529.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if (substr(PHP_OS, 0, 3) == "WIN") {
77
}
88
exec('which expect', $output, $ret);
99
if ($ret) {
10-
die "skip no expect installed";
10+
die("skip no expect installed");
1111
}
1212
?>
1313
--FILE--

0 commit comments

Comments
 (0)