From adbbf25a93e6094f6e3a56fa49297c0ad7de2da4 Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Sun, 16 Jun 2013 15:58:09 +0200 Subject: [PATCH] Fixing namespace in test --- lib/Cake/Test/TestCase/Database/Driver/PostgresTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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] );