summaryrefslogtreecommitdiff
path: root/tests/php/phpt/variables/012-value-casting-operators-double.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/phpt/variables/012-value-casting-operators-double.phpt')
-rw-r--r--tests/php/phpt/variables/012-value-casting-operators-double.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/php/phpt/variables/012-value-casting-operators-double.phpt b/tests/php/phpt/variables/012-value-casting-operators-double.phpt
index 32086ef..babd476 100644
--- a/tests/php/phpt/variables/012-value-casting-operators-double.phpt
+++ b/tests/php/phpt/variables/012-value-casting-operators-double.phpt
@@ -21,9 +21,9 @@ function out($v) {
//echo PHP_EOL;
}
-out(5555555555555555);
+out(5555555555555);
out("999999999999999");
-out(999999999999999);
+out(99999999999999);
out(5);
out(-99999999);
out("18");
@@ -42,12 +42,12 @@ out(0x1A); // hexadecimal number (equivalent to 26 decimal)
--EXPECT--
-Test 5555555555555555:
-5555555555555555
+Test 5555555555555:
+5555555555555
Test '999999999999999':
999999999999999
-Test 999999999999999:
-999999999999999
+Test 99999999999999:
+99999999999999
Test 5:
5
Test -99999999: