diff options
Diffstat (limited to 'tests/lang/002.phpt')
-rw-r--r-- | tests/lang/002.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lang/002.phpt b/tests/lang/002.phpt index 251f90b0a2..b1b4b0849d 100644 --- a/tests/lang/002.phpt +++ b/tests/lang/002.phpt @@ -4,8 +4,8 @@ Simple While Loop Test <?php $a=1; while ($a<10) { - echo $a; - $a++; + echo $a; + $a++; } ?> --EXPECT-- |