diff --git a/lib/Cake/Test/TestCase/Database/Driver/PostgresTest.php b/lib/Cake/Test/TestCase/Database/Driver/PostgresTest.php index afa31f5f7f7..8273b7edd24 100644 --- a/lib/Cake/Test/TestCase/Database/Driver/PostgresTest.php +++ b/lib/Cake/Test/TestCase/Database/Driver/PostgresTest.php @@ -34,7 +34,7 @@ class PostgresTest extends \Cake\TestSuite\TestCase { * @return void */ public function testConnectionConfigDefault() { - $driver = $this->getMock('Cake\Database\driver\Postgres', ['_connect', 'connection']); + $driver = $this->getMock('Cake\Database\Driver\Postgres', ['_connect', 'connection']); $expected = [ 'persistent' => true, 'host' => 'localhost', @@ -97,7 +97,7 @@ public function testConnectionConfigCustom() { 'init' => ['Execute this', 'this too'] ]; $driver = $this->getMock( - 'Cake\Database\driver\Postgres', + 'Cake\Database\Driver\Postgres', ['_connect', 'connection'], [$config] );