diff --git a/ext/spl/tests/iterator_032.phpt b/ext/spl/tests/iterator_032.phpt index 7d15456155e..86695d4af8e 100755 --- a/ext/spl/tests/iterator_032.phpt +++ b/ext/spl/tests/iterator_032.phpt @@ -34,6 +34,9 @@ catch(OutOfBoundsException $e) echo $e->getMessage() . "\n"; } +$it->next(); +var_dump($it->valid()); + ?> ===DONE=== @@ -45,4 +48,5 @@ int(2) Cannot seek to 0 which is below the offset 1 int(3) Cannot seek to 3 which is behind offest 1 plus count 2 +bool(false) ===DONE===