summaryrefslogtreecommitdiff
path: root/tests/lang/foreachLoop.011.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/foreachLoop.011.phpt')
-rw-r--r--tests/lang/foreachLoop.011.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lang/foreachLoop.011.phpt b/tests/lang/foreachLoop.011.phpt
index eeb08596cb..1f57e0acdf 100644
--- a/tests/lang/foreachLoop.011.phpt
+++ b/tests/lang/foreachLoop.011.phpt
@@ -1,5 +1,5 @@
---TEST--
-Changing from an interable type to a non iterable type during the iteration
+--TEST--
+Changing from an interable type to a non iterable type during the iteration
--FILE--
<?php
echo "\nChange from array to non iterable:\n";
@@ -17,7 +17,7 @@ $a->b=2;
$b=&$a;
foreach ($a as $v) {
var_dump($v);
- $b='x';
+ $b='x';
}
?>