From 02fae338c030d33a5e5e287aff6e277b8c84453e Mon Sep 17 00:00:00 2001 From: antograssiot Date: Thu, 14 Aug 2014 22:58:21 +0200 Subject: [PATCH] fixing test --- tests/TestCase/Database/ConnectionTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestCase/Database/ConnectionTest.php b/tests/TestCase/Database/ConnectionTest.php index ab4f80696b6..8362fcfd382 100644 --- a/tests/TestCase/Database/ConnectionTest.php +++ b/tests/TestCase/Database/ConnectionTest.php @@ -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() { @@ -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() { @@ -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() {