summaryrefslogtreecommitdiff
path: root/Zend/tests/bug45877.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug45877.phpt')
-rw-r--r--Zend/tests/bug45877.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/bug45877.phpt b/Zend/tests/bug45877.phpt
index ec44cb061f..79c3020f20 100644
--- a/Zend/tests/bug45877.phpt
+++ b/Zend/tests/bug45877.phpt
@@ -5,10 +5,10 @@ precision=16
--FILE--
<?php
$keys = array(PHP_INT_MAX,
- (string) PHP_INT_MAX,
- (string) (-PHP_INT_MAX - 1),
- -PHP_INT_MAX - 1,
- (string) (PHP_INT_MAX + 1));
+ (string) PHP_INT_MAX,
+ (string) (-PHP_INT_MAX - 1),
+ -PHP_INT_MAX - 1,
+ (string) (PHP_INT_MAX + 1));
var_dump(array_fill_keys($keys, 1));
?>