diff options
Diffstat (limited to 'ext/standard/tests/math/tan_basiclong_64bit.phpt')
-rw-r--r-- | ext/standard/tests/math/tan_basiclong_64bit.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/math/tan_basiclong_64bit.phpt b/ext/standard/tests/math/tan_basiclong_64bit.phpt index 3c8abe9d27..bdc97b0732 100644 --- a/ext/standard/tests/math/tan_basiclong_64bit.phpt +++ b/ext/standard/tests/math/tan_basiclong_64bit.phpt @@ -8,7 +8,7 @@ if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only"); ?> --FILE-- <?php - + define("MAX_64Bit", 9223372036854775807); define("MAX_32Bit", 2147483647); define("MIN_64Bit", -9223372036854775807 - 1); @@ -25,7 +25,7 @@ foreach ($longVals as $longVal) { echo "--- testing: $longVal ---\n"; var_dump(tan($longVal)); } - + ?> ===DONE=== --EXPECT-- |