diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-10-18 00:17:27 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-10-18 00:17:27 +0000 |
commit | 8b91c8f32e79797fa63b745700a00e919b4192a4 (patch) | |
tree | e8d3089a395e0f09ed3a4c4313387ece06f88a42 | |
parent | 03418c1d365b0ee79344232f58ad6cbe9797dc24 (diff) | |
download | php-git-8b91c8f32e79797fa63b745700a00e919b4192a4.tar.gz |
ZTS test fix
-rw-r--r-- | ext/pdo_sqlite/tests/bug33841.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_sqlite/tests/bug33841.phpt b/ext/pdo_sqlite/tests/bug33841.phpt index 936aebf98f..d472af770e 100644 --- a/ext/pdo_sqlite/tests/bug33841.phpt +++ b/ext/pdo_sqlite/tests/bug33841.phpt @@ -6,8 +6,8 @@ if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; ?> --FILE-- <?php -require 'ext/pdo/tests/pdo_test.inc'; -$db = PDOTest::test_factory('ext/pdo_sqlite/tests/common.phpt'); +require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc'; +$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt'); $db->exec('CREATE TABLE test (text)'); |