summaryrefslogtreecommitdiff
path: root/Zend/tests/bug44069.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug44069.phpt')
-rw-r--r--Zend/tests/bug44069.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/tests/bug44069.phpt b/Zend/tests/bug44069.phpt
index 75beaafed7..b18e16b254 100644
--- a/Zend/tests/bug44069.phpt
+++ b/Zend/tests/bug44069.phpt
@@ -8,12 +8,12 @@ $string = str_repeat('This is a teststring.', 50);
for($i = 1; $i <= 2000; $i++)
{
// $newstring .= $string; //This uses an expected amount of mem.
- $newstring = $newstring . $string; //This uses very much mem.
+ $newstring = $newstring . $string; //This uses very much mem.
- for($j = 1; $j <= 10; $j++)
- {
- $array[] = 'test';
- }
+ for($j = 1; $j <= 10; $j++)
+ {
+ $array[] = 'test';
+ }
}
echo "ok\n";
?>