summaryrefslogtreecommitdiff
path: root/tests/unit/SQLMap/TAdodbConnectionTestCase.php
diff options
context:
space:
mode:
authorwei <>2006-05-18 08:16:21 +0000
committerwei <>2006-05-18 08:16:21 +0000
commit1f8410794c8213d87227fabae2114a3be8033ece (patch)
tree68571a616595e5e01f32d68cb79b689dd02d2529 /tests/unit/SQLMap/TAdodbConnectionTestCase.php
parent3d437d9dcd37dc901f53ca3322ba118851e3c676 (diff)
Moved adodb to 3rdParty directory.
Diffstat (limited to 'tests/unit/SQLMap/TAdodbConnectionTestCase.php')
-rw-r--r--tests/unit/SQLMap/TAdodbConnectionTestCase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/SQLMap/TAdodbConnectionTestCase.php b/tests/unit/SQLMap/TAdodbConnectionTestCase.php
index df912c1b..c0d99867 100644
--- a/tests/unit/SQLMap/TAdodbConnectionTestCase.php
+++ b/tests/unit/SQLMap/TAdodbConnectionTestCase.php
@@ -14,7 +14,7 @@ class TAdodbConnectionTestCase extends UnitTestCase
$file = dirname(__FILE__).'/resources/data.db';
$this->db_file = dirname(__FILE__).'/resources/test.db';
copy($file,$this->db_file);
- $provider = new TAdodbProvider();
+ $provider = new TAdodb();
$provider->importAdodbLibrary();
}
@@ -25,7 +25,7 @@ class TAdodbConnectionTestCase extends UnitTestCase
function testProviderCreation()
{
- $provider = new TAdodbProvider();
+ $provider = new TAdodb();
$connection = $provider->getConnection();
$this->assertTrue($connection instanceof TAdodbConnection);
try