diff options
author | Marcus Boerger <helly@php.net> | 2006-03-16 00:39:50 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-03-16 00:39:50 +0000 |
commit | 7c14d86dc3f7e63e6266ccb78fc4be40470076fd (patch) | |
tree | b82c27e16ca5de7c154398bea3d5252c0933984d | |
parent | eacb27d2daa91350b583bac15f11275a7f645186 (diff) | |
download | php-git-7c14d86dc3f7e63e6266ccb78fc4be40470076fd.tar.gz |
- Fix test
-rwxr-xr-x | ext/spl/tests/array_017.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/tests/array_017.phpt b/ext/spl/tests/array_017.phpt index f028a12035..72bf639986 100755 --- a/ext/spl/tests/array_017.phpt +++ b/ext/spl/tests/array_017.phpt @@ -29,7 +29,7 @@ class ArrayIteratorEx extends ArrayIterator function setFlags($flags) { echo __METHOD__ . "($flags)\n"; - ArrayObject::setFlags($flags); + ArrayIterator::setFlags($flags); } } |