diff options
author | Ulf Wendel <uw@php.net> | 2011-09-06 13:57:03 +0000 |
---|---|---|
committer | Ulf Wendel <uw@php.net> | 2011-09-06 13:57:03 +0000 |
commit | e21ea5e7ce7d9a9da87b8f09adda238762bc7041 (patch) | |
tree | 299d12db37b9833766c1109702b2603f05200ff4 | |
parent | 79b605a89b45a592a4bddf204ed1bbd4e58350c0 (diff) | |
download | php-git-e21ea5e7ce7d9a9da87b8f09adda238762bc7041.tar.gz |
Fix SKIPIF
-rw-r--r-- | ext/pdo_mysql/tests/pdo_mysql_interface.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/tests/pdo_mysql_interface.phpt b/ext/pdo_mysql/tests/pdo_mysql_interface.phpt index 9e13908a5a..64a3cac1b8 100644 --- a/ext/pdo_mysql/tests/pdo_mysql_interface.phpt +++ b/ext/pdo_mysql/tests/pdo_mysql_interface.phpt @@ -4,7 +4,7 @@ MySQL PDO class interface <?php require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc'); require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc'); -$db = MySQLPDOTest::getDriver(); +$db = MySQLPDOTest::factory(); if (false == MySQLPDOTest::detect_transactional_mysql_engine($db)) die("skip Transactional engine not found"); ?> |