summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/ceil_variation1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/ceil_variation1.phpt')
-rw-r--r--ext/standard/tests/math/ceil_variation1.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/standard/tests/math/ceil_variation1.phpt b/ext/standard/tests/math/ceil_variation1.phpt
index a6f308d386..815093ea49 100644
--- a/ext/standard/tests/math/ceil_variation1.phpt
+++ b/ext/standard/tests/math/ceil_variation1.phpt
@@ -66,13 +66,13 @@ $inputs = array(
// loop through each element of $inputs to check the behaviour of ceil()
$iterator = 1;
foreach($inputs as $input) {
- echo "\n-- Iteration $iterator --\n";
- try {
- var_dump(ceil($input));
- } catch (TypeError $e) {
- echo $e->getMessage(), "\n";
- }
- $iterator++;
+ echo "\n-- Iteration $iterator --\n";
+ try {
+ var_dump(ceil($input));
+ } catch (TypeError $e) {
+ echo $e->getMessage(), "\n";
+ }
+ $iterator++;
};
fclose($fp);
?>