diff options
author | Antony Dovgal <tony2001@php.net> | 2006-03-28 23:15:40 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-03-28 23:15:40 +0000 |
commit | eab2f690fdad147e058b7c319b9befce37215879 (patch) | |
tree | 02316f41bb65c5d6e6adf8618825088c82520d19 /ext/pdo_oci | |
parent | 1fa58ec003716068ea6b2aa6a0ea71c7b8ed0bc2 (diff) | |
download | php-git-eab2f690fdad147e058b7c319b9befce37215879.tar.gz |
fix skip condition
Diffstat (limited to 'ext/pdo_oci')
-rw-r--r-- | ext/pdo_oci/tests/bug_33707.phpt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo_oci/tests/bug_33707.phpt b/ext/pdo_oci/tests/bug_33707.phpt index 17ea37f74f..6e53e3fb98 100644 --- a/ext/pdo_oci/tests/bug_33707.phpt +++ b/ext/pdo_oci/tests/bug_33707.phpt @@ -3,8 +3,7 @@ PDO OCI Bug #33707 --SKIPIF-- <?php if (!extension_loaded('pdo') || !extension_loaded('pdo_oci')) die('skip not loaded'); -require 'ext/pdo_oci/tests/config.inc'; -require 'ext/pdo/tests/pdo_test.inc'; +require dirname(__FILE__).'/../../pdo/tests/pdo_test.inc'; PDOTest::skip(); ?> --FILE-- |