summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Wendel <uw@php.net>2011-09-06 13:57:03 +0000
committerUlf Wendel <uw@php.net>2011-09-06 13:57:03 +0000
commitfe8968001046dcad06ace6fcda493418fb92c50c (patch)
treeb7484849b1b2ca23431fb1e599ee0c588e709c82
parenta4fcb5f1bbc2dd1078603f9d989158f998c64a3b (diff)
downloadphp-git-fe8968001046dcad06ace6fcda493418fb92c50c.tar.gz
Fix SKIPIF
-rw-r--r--ext/pdo_mysql/tests/pdo_mysql_interface.phpt2
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");
?>