From 87b55c11dbc418cbee412e93d10fd559ac684b59 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Mon, 6 Feb 2012 22:04:03 -0500 Subject: [PATCH] Fixed warning in test --- tests/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.php b/tests/index.php index 9dc4c9f..b0be4c8 100644 --- a/tests/index.php +++ b/tests/index.php @@ -43,7 +43,7 @@ foreach(pdo_drivers() as $d) $src_file = "{$src_path}{$d}.php"; $test_file = "{$test_path}{$d}.php"; - if(is_file($file)) + if(is_file($src_file)) { require_once($src_file); require_once($test_file);