diff options
author | Scott MacVicar <scottmac@php.net> | 2009-05-09 20:18:43 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2009-05-09 20:18:43 +0000 |
commit | cc33f375a6aaa3278e5a36d2b2356d0aa2579225 (patch) | |
tree | 4dd679708f284004eed522f712cd4ced0ad5620e /ext/spl/tests/dit_003.phpt | |
parent | 01a6919ff0b4be8e45450d5124ce1ff018f6f915 (diff) | |
download | php-git-cc33f375a6aaa3278e5a36d2b2356d0aa2579225.tar.gz |
MFH Broken test when you have a snapshot as it relies on CVS
Diffstat (limited to 'ext/spl/tests/dit_003.phpt')
-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; } |