diff options
author | Marcus Boerger <helly@php.net> | 2005-10-13 18:37:19 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-10-13 18:37:19 +0000 |
commit | 491674bea653ae63bb114f9f8f1daacea6a437b1 (patch) | |
tree | ee0a2b1523f834b9856f07df1733321e3650d4c4 /ext/pdo/tests | |
parent | c47fb30b5b9cc7d5233539ce2338ec5a806f64ae (diff) | |
download | php-git-491674bea653ae63bb114f9f8f1daacea6a437b1.tar.gz |
- Do not try to autoload the class, use internal only
Diffstat (limited to 'ext/pdo/tests')
-rw-r--r-- | ext/pdo/tests/pdo_014.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo/tests/pdo_014.phpt b/ext/pdo/tests/pdo_014.phpt index 613929cffd..b261357284 100644 --- a/ext/pdo/tests/pdo_014.phpt +++ b/ext/pdo/tests/pdo_014.phpt @@ -4,7 +4,7 @@ PDO Common: PDOStatement SPL iterator <?php # vim:ft=php if (!extension_loaded('pdo')) die('skip'); if (!extension_loaded('SPL')) print 'skip SPL not available'; -if (!class_exists('IteratorIterator')) die('skip IteratorIterator class not present'); +if (!class_exists('IteratorIterator', false)) die('skip IteratorIterator class not present'); $dir = getenv('REDIR_TEST_DIR'); if (false == $dir) die('skip no driver'); require_once $dir . 'pdo_test.inc'; |