diff options
| author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-09-16 14:16:42 -0300 |
|---|---|---|
| committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-10-14 12:07:20 -0300 |
| commit | 9c144e0d8217d1ef7a83c2498214308b21af749f (patch) | |
| tree | d977ba0d8601de477c52f62accf02c120ef06253 /ext/standard/tests/general_functions/is_float_64bit.phpt | |
| parent | b419732ddb0673dc5b15a67ee4bc7f06dd90d7d0 (diff) | |
| download | php-git-9c144e0d8217d1ef7a83c2498214308b21af749f.tar.gz | |
Trim trailing whitespace in tests
Diffstat (limited to 'ext/standard/tests/general_functions/is_float_64bit.phpt')
| -rw-r--r-- | ext/standard/tests/general_functions/is_float_64bit.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/standard/tests/general_functions/is_float_64bit.phpt b/ext/standard/tests/general_functions/is_float_64bit.phpt index f5350f848e..7b20dff2ce 100644 --- a/ext/standard/tests/general_functions/is_float_64bit.phpt +++ b/ext/standard/tests/general_functions/is_float_64bit.phpt @@ -10,7 +10,7 @@ precision=14 <?php /* Prototype: bool is_float ( mixed $var ); * Description: Finds whether the given variable is a float - */ + */ echo "*** Testing is_float(), is_double() and is_real() with float values***\n"; // different valid float values @@ -92,7 +92,7 @@ $not_floats = array ( TRUE, false, FALSE, - + "", // strings '', "0", @@ -105,7 +105,7 @@ $not_floats = array ( '1e5', '1.5e6_string', "1.5e6_string", - + 1, // integers, hex and octal -1, 0, @@ -114,7 +114,7 @@ $not_floats = array ( -0x673, 0123, -0123, - + @$unset_var, // unset variable @$undefined_var ); @@ -139,7 +139,7 @@ var_dump( is_real() ); var_dump( is_float( $floats[0], $floats[1]) ); var_dump( is_double( $floats[0], $floats[1]) ); var_dump( is_real( $floats[0], $floats[1]) ); - + echo "Done\n"; ?> --EXPECTF-- |
