summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xext/spl/tests/dit_003.phpt2
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;
}