diff options
-rwxr-xr-x | ext/spl/tests/dit_003.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/tests/dit_003.phpt b/ext/spl/tests/dit_003.phpt index 7a38e73805..4ffc2921e0 100755 --- a/ext/spl/tests/dit_003.phpt +++ b/ext/spl/tests/dit_003.phpt @@ -3,7 +3,7 @@ SPL: FilesystemIterator and foreach --FILE-- <?php $count = 0; -foreach(new FilesystemIterator('CVS') as $ent) +foreach(new FilesystemIterator(__DIR__) as $ent) { ++$count; } |