From b6d6f06ae54593e5e5f1b63619328002f0a6bd20 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 11 Apr 2012 11:53:18 -0400 Subject: [PATCH] Fix test loading --- tests/index.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/index.php b/tests/index.php index be02f10..d13f8da 100644 --- a/tests/index.php +++ b/tests/index.php @@ -47,12 +47,14 @@ foreach(pdo_drivers() as $d) if(is_dir($src_dir)) { - array_map('do_include', glob("{$test_path}{$d}/{$d}*.php")); + require_once("{$test_path}{$d}/{$d}.php"); + require_once("{$test_path}{$d}/{$d}-qb.php"); } } // Load Firebird if there is support if(function_exists('fbird_connect')) { - array_map('do_include', glob("{$test_path}/firebird/firebird*.php")); + require_once("{$test_path}/firebird/firebird.php"); + require_once("{$test_path}/firebird/firebird-qb.php"); } \ No newline at end of file