Skip to content

Commit

Permalink
fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Aug 14, 2014
1 parent cbde006 commit 02fae33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/TestCase/Database/ConnectionTest.php
Expand Up @@ -65,7 +65,7 @@ public function testConnect() {
* Tests creating a connection using no driver throws an exception
*
* @expectedException \Cake\Database\Error\MissingDriverException
* @expectedExceptionMessage Database driver "" could not be found.
* @expectedExceptionMessage Database driver could not be found.
* @return void
*/
public function testNoDriver() {
Expand All @@ -76,7 +76,7 @@ public function testNoDriver() {
* Tests creating a connection using an invalid driver throws an exception
*
* @expectedException \Cake\Database\Error\MissingDriverException
* @expectedExceptionMessage Database driver "" could not be found.
* @expectedExceptionMessage Database driver could not be found.
* @return void
*/
public function testEmptyDriver() {
Expand All @@ -87,7 +87,7 @@ public function testEmptyDriver() {
* Tests creating a connection using an invalid driver throws an exception
*
* @expectedException \Cake\Database\Error\MissingDriverException
* @expectedExceptionMessage Database driver "\Foo\InvalidDriver" could not be found.
* @expectedExceptionMessage Database driver \Foo\InvalidDriver could not be found.
* @return void
*/
public function testMissingDriver() {
Expand Down

0 comments on commit 02fae33

Please sign in to comment.