diff options
-rw-r--r-- | tests/lang/bug30726.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/bug30726.phpt b/tests/lang/bug30726.phpt index f979e9a697..79aeff7d26 100644 --- a/tests/lang/bug30726.phpt +++ b/tests/lang/bug30726.phpt @@ -2,7 +2,7 @@ Bug #30726 (-.1 like numbers are not being handled correctly) --FILE-- <?php -echo (int) is_float('-.1' * 2); +echo (int) is_float('-.1' * 2), "\n"; ?> --EXPECT-- 1 |