summaryrefslogtreecommitdiff
path: root/tests/lang/operators/operator_notidentical_variation.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/operators/operator_notidentical_variation.phpt')
-rw-r--r--tests/lang/operators/operator_notidentical_variation.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lang/operators/operator_notidentical_variation.phpt b/tests/lang/operators/operator_notidentical_variation.phpt
index a9fbcf60e1..bae03f85b7 100644
--- a/tests/lang/operators/operator_notidentical_variation.phpt
+++ b/tests/lang/operators/operator_notidentical_variation.phpt
@@ -6,7 +6,7 @@ if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
?>
--FILE--
<?php
-
+
define("MAX_64Bit", 9223372036854775807);
define("MAX_32Bit", 2147483647);
define("MIN_64Bit", -9223372036854775807 - 1);
@@ -36,7 +36,7 @@ for ($i = 0; $i < count($validNotIdentical); $i +=2) {
}
else {
echo "FAILED: '$typeToTestVal' === '$compareVal'\n";
- $failed = true;
+ $failed = true;
}
}
}
@@ -56,7 +56,7 @@ for ($i = 0; $i < count($invalidNotIdentical); $i +=2) {
if ($failed == false) {
echo "Test Passed\n";
}
-
+
?>
===DONE===
--EXPECT--