summaryrefslogtreecommitdiff
path: root/Zend/tests/array_hash_zero.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/array_hash_zero.phpt')
-rw-r--r--Zend/tests/array_hash_zero.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/array_hash_zero.phpt b/Zend/tests/array_hash_zero.phpt
index 337cdfd1a2..0939d5bf12 100644
--- a/Zend/tests/array_hash_zero.phpt
+++ b/Zend/tests/array_hash_zero.phpt
@@ -4,12 +4,12 @@ Accept hashes being equal to zero
<?php
$hashes = [
- "\x8e\x1a\x63\x0f\x61" => 32,
- "\xf7\x17\x7f\x7f\x7f\x7f\x7f\x7f\x7f\x6b\x03\x6a\x13\x63\x17\x6b\x1d\x67" => 64,
+ "\x8e\x1a\x63\x0f\x61" => 32,
+ "\xf7\x17\x7f\x7f\x7f\x7f\x7f\x7f\x7f\x6b\x03\x6a\x13\x63\x17\x6b\x1d\x67" => 64,
];
foreach ($hashes as $hash => $bits) {
- var_dump($hashes[$hash], $bits);
+ var_dump($hashes[$hash], $bits);
}
?>