summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug76367.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug76367.phpt')
-rw-r--r--ext/spl/tests/bug76367.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/tests/bug76367.phpt b/ext/spl/tests/bug76367.phpt
index 38aefbc922..7e9d7e66ba 100644
--- a/ext/spl/tests/bug76367.phpt
+++ b/ext/spl/tests/bug76367.phpt
@@ -7,7 +7,7 @@ $arr = [1,3,55,66,43,6];
$iter = new NoRewindIterator(new ArrayIterator($arr));
while($iter->valid()) {
- $iter->next();
+ $iter->next();
}
var_dump($iter->current());