summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-10-18 00:17:27 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-10-18 00:17:27 +0000
commit8b91c8f32e79797fa63b745700a00e919b4192a4 (patch)
treee8d3089a395e0f09ed3a4c4313387ece06f88a42
parent03418c1d365b0ee79344232f58ad6cbe9797dc24 (diff)
downloadphp-git-8b91c8f32e79797fa63b745700a00e919b4192a4.tar.gz
ZTS test fix
-rw-r--r--ext/pdo_sqlite/tests/bug33841.phpt4
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)');