Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Commit

Permalink
Merge 527f269 into 649b42a
Browse files Browse the repository at this point in the history
  • Loading branch information
Suven committed Nov 17, 2014
2 parents 649b42a + 527f269 commit 3a030ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Wrapper/CakePHP/V3/DbDsn.php
Expand Up @@ -46,7 +46,7 @@ class DbDsn extends Dsn
protected $defaultOptions = [
'keyMap' => [
'engine' => 'driver',
'user' => 'login',
'user' => 'username',
'pass' => 'password'
]
];
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase/Wrapper/CakePHP/V3/DbDsnTest.php
Expand Up @@ -46,7 +46,7 @@ public function defaultsProvider()
'driver' => 'Cake\Database\Driver\Mysql',
'host' => 'localhost',
'port' => 3306,
'login' => 'user',
'username' => 'user',
'password' => 'password',
'database' => 'database_name',
]
Expand All @@ -58,7 +58,7 @@ public function defaultsProvider()
'driver' => 'Cake\Database\Driver\Mysql',
'host' => 'localhost',
'port' => 3306,
'login' => 'user',
'username' => 'user',
'password' => 'password',
'database' => 'test_database_name',
]
Expand Down

0 comments on commit 3a030ef

Please sign in to comment.