From f7fd3d2f4a13a4c730d1a07fc0fcee74fc71895b Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Sun, 30 Mar 2014 23:20:08 +0200 Subject: [PATCH] Fixing typo --- tests/TestCase/Database/ConnectionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase/Database/ConnectionTest.php b/tests/TestCase/Database/ConnectionTest.php index 173eac79f98..04a1e66d838 100644 --- a/tests/TestCase/Database/ConnectionTest.php +++ b/tests/TestCase/Database/ConnectionTest.php @@ -28,7 +28,7 @@ class ConnectionTest extends TestCase { public function setUp() { $this->connection = ConnectionManager::get('test'); - $this->skipIf($this->connection()->driver() instanceof \Cake\Database\Driver\Sqlite); + $this->skipIf($this->connection->driver() instanceof \Cake\Database\Driver\Sqlite); parent::setUp(); }