diff options
Diffstat (limited to 'ext/opcache/tests/bug66474.phpt')
-rw-r--r-- | ext/opcache/tests/bug66474.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/tests/bug66474.phpt b/ext/opcache/tests/bug66474.phpt index 3bd038c0de..10d54a7fa5 100644 --- a/ext/opcache/tests/bug66474.phpt +++ b/ext/opcache/tests/bug66474.phpt @@ -10,7 +10,7 @@ opcache.file_update_protection=0 --FILE-- <?php function foo() { - $speed = 'slow' || 'fast'; + $speed = 'slow' || 'fast'; } foo(); echo "ok\n"; |