summaryrefslogtreecommitdiff
path: root/tests/lang/operators/operator_notequals_variation.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/operators/operator_notequals_variation.phpt')
-rw-r--r--tests/lang/operators/operator_notequals_variation.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lang/operators/operator_notequals_variation.phpt b/tests/lang/operators/operator_notequals_variation.phpt
index 25bbfc5859..137888506f 100644
--- a/tests/lang/operators/operator_notequals_variation.phpt
+++ b/tests/lang/operators/operator_notequals_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);
@@ -37,7 +37,7 @@ for ($i = 0; $i < count($validNotEquals); $i +=2) {
else {
echo "FAILED: '$typeToTestVal' == '$compareVal'\n";
$failed = true;
- }
+ }
}
}
// test invalid values
@@ -55,7 +55,7 @@ for ($i = 0; $i < count($invalidNotEquals); $i +=2) {
if ($failed == false) {
echo "Test Passed\n";
}
-
+
?>
===DONE===
--EXPECT--