Skip to content

Commit

Permalink
Fixing namespace in test
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jun 16, 2013
1 parent 8702540 commit adbbf25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Test/TestCase/Database/Driver/PostgresTest.php
Expand Up @@ -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',
Expand Down Expand Up @@ -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]
);
Expand Down

0 comments on commit adbbf25

Please sign in to comment.